From 669b47955d0b51d61bb22d5b29d82f487f7bb49b Mon Sep 17 00:00:00 2001 From: Gyeongjae Choi Date: Tue, 11 Jun 2024 13:36:39 +0000 Subject: [PATCH] Fix os --- .github/workflows/main.yaml | 2 +- utils/build_test_matrix.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 156f714..d0745a6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -43,7 +43,7 @@ permissions: jobs: test: name: test (${{ inputs.pyodide-version}},${{ inputs.browser }},${{ inputs.runner }}) - runs-on: ubuntu-latest + runs-on: ${{ inputs.os }} env: DISPLAY: :99 steps: diff --git a/utils/build_test_matrix.py b/utils/build_test_matrix.py index a8f274f..5d7bc13 100644 --- a/utils/build_test_matrix.py +++ b/utils/build_test_matrix.py @@ -7,7 +7,7 @@ import itertools import json -DEFAULT_OS = "ubuntu-latest, macos-11" +DEFAULT_OS = "ubuntu-latest, macos-latest" DEFAULT_RUNNER = "selenium, playwright" DEFAULT_BROWSER = "chrome, firefox, node, safari, host" DEFAULT_CHROME_VERSION = "latest"