|
8 | 8 |
|
9 | 9 | jobs: |
10 | 10 | code-test: |
| 11 | + strategy: |
| 12 | + max-parallel: 1 |
| 13 | + matrix: |
| 14 | + os: [ubuntu-latest, LinuxARM64] |
| 15 | + |
11 | 16 | name: 'Code Test' |
12 | 17 | timeout-minutes: 20 |
13 | 18 | runs-on: ${{ matrix.os }} |
14 | | - strategy: |
15 | | - matrix: |
16 | | - os: [ubuntu-latest] |
17 | | - arch: [x64, arm64] |
| 19 | + |
18 | 20 | steps: |
19 | 21 | - uses: actions/checkout@v4 |
20 | 22 | - uses: actions/setup-node@v4 |
|
38 | 40 | examples-test: |
39 | 41 | needs: code-test |
40 | 42 | strategy: |
| 43 | + fail-fast: false |
41 | 44 | matrix: |
42 | | - os: [ubuntu-latest, macos-latest, windows-latest] |
43 | | - arch: [x64, arm64] |
44 | | - exclude: |
45 | | - - os: windows-latest |
46 | | - arch: arm64 |
| 45 | + os: [ubuntu-latest, macos-latest, windows-latest, LinuxARM64] |
47 | 46 |
|
48 | 47 | defaults: |
49 | 48 | run: |
@@ -323,6 +322,7 @@ jobs: |
323 | 322 | rn-ios-test: |
324 | 323 | needs: code-test |
325 | 324 | strategy: |
| 325 | + fail-fast: false |
326 | 326 | matrix: |
327 | 327 | os: [macos-13, macos-14, macos-15] # macos-12 for ios 15 it's going to be deprecated, it's also using an old version of xcode that is not compatible with react native |
328 | 328 | include: |
@@ -381,6 +381,7 @@ jobs: |
381 | 381 | rn-android-test: |
382 | 382 | needs: code-test |
383 | 383 | strategy: |
| 384 | + fail-fast: false |
384 | 385 | matrix: |
385 | 386 | api-level: [25, 26, 29, 31, 35] #app fail: android 5; driver fail: android 6 and android 7 |
386 | 387 | include: |
@@ -448,6 +449,7 @@ jobs: |
448 | 449 | expo-ios-test: |
449 | 450 | needs: code-test |
450 | 451 | strategy: |
| 452 | + fail-fast: false |
451 | 453 | matrix: |
452 | 454 | os: [macos-13, macos-14, macos-15] # macos-12 for ios 15 it's going to be deprecated, it's also using an old version of xcode that is not compatible with react native |
453 | 455 | include: |
@@ -506,6 +508,7 @@ jobs: |
506 | 508 | expo-android-test: |
507 | 509 | needs: code-test |
508 | 510 | strategy: |
| 511 | + fail-fast: false |
509 | 512 | matrix: |
510 | 513 | api-level: [25, 26, 29, 31, 35] #app fail: android 5; driver fail: android 6 and android 7 |
511 | 514 | include: |
|
0 commit comments