Skip to content

Commit

Permalink
fix: test for new github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
andycall authored and yifei8 committed Feb 27, 2024
1 parent 4b38fea commit 47b124e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/integration_test_flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 47b124e

Please sign in to comment.