From 47b124e5e443431a44febd0de73ead61b89293c4 Mon Sep 17 00:00:00 2001 From: andycall Date: Mon, 26 Feb 2024 16:29:00 +0800 Subject: [PATCH] fix: test for new github ci --- .github/workflows/integration_test_flutter.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integration_test_flutter.yml b/.github/workflows/integration_test_flutter.yml index a07dab3506..7274506b5d 100644 --- a/.github/workflows/integration_test_flutter.yml +++ b/.github/workflows/integration_test_flutter.yml @@ -10,7 +10,7 @@ env: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: setup: - runs-on: macos-12 + runs-on: 'macos-14' outputs: matrix: ${{ steps.matrix.outputs.value }} steps: @@ -22,7 +22,7 @@ jobs: JSON=$(node -e "console.log(JSON.stringify(require('./integration_tests/spec_group.json').map(j=>j.name)))") echo "::set-output name=value::$(echo $JSON)" build_bridge: - runs-on: macos-12 + runs-on: 'macos-14' steps: - uses: actions/checkout@v3 with: @@ -73,7 +73,7 @@ jobs: - run: cd webf && flutter test integration_test: - runs-on: self-hosted + runs-on: 'macos-14' needs: [ setup, build_bridge ] strategy: fail-fast: false @@ -109,7 +109,7 @@ jobs: if: steps.test.outcome != 'success' run: exit 1 multiple_page_test: - runs-on: self-hosted + runs-on: 'macos-14' needs: [ build_bridge ] steps: - uses: actions/checkout@v3 @@ -136,7 +136,7 @@ jobs: run: exit 1 preload_page_test: - runs-on: self-hosted + runs-on: 'macos-14' needs: [ build_bridge ] steps: - uses: actions/checkout@v3 @@ -162,7 +162,7 @@ jobs: if: steps.test.outcome != 'success' run: exit 1 prerendering_page_test: - runs-on: self-hosted + runs-on: 'macos-14' needs: [ build_bridge ] steps: - uses: actions/checkout@v3 @@ -189,7 +189,7 @@ jobs: run: exit 1 memory_leak_test: - runs-on: self-hosted + runs-on: 'macos-14' needs: [ build_bridge ] steps: - uses: actions/checkout@v3