Skip to content

Commit f31c43d

Browse files
authored
arm64 skip browser test
1 parent 9439ffd commit f31c43d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
deno-version: v2.x
6666

6767
- name: setup playwright for browser related test
68+
if: matrix.os != 'LinuxARM64'
6869
run: npx playwright install --with-deps && npx playwright install msedge && npx playwright install chrome
6970

7071
- name: build driver
@@ -273,12 +274,14 @@ jobs:
273274
run: rm -rf examples/with-typescript-nextjs
274275

275276
- name: node with-javascript-vite
277+
if: matrix.os != 'LinuxARM64'
276278
working-directory: examples/with-javascript-vite
277279
run: npm i && npx playwright test
278280
env:
279281
VITE_DATABASE_URL: ${{ secrets.CHINOOK_DATABASE_URL }}
280282

281283
- name: bun with-javascript-vite
284+
if: matrix.os != 'LinuxARM64'
282285
working-directory: examples/with-javascript-vite
283286
run: |
284287
if [ "$RUNNER_OS" != "Windows" ]; then
@@ -300,16 +303,17 @@ jobs:
300303
run: rm -rf examples/with-javascript-vite
301304

302305
- name: node with-javascript-browser
306+
if: matrix.os != 'LinuxARM64'
303307
working-directory: examples/with-javascript-browser
304308
run: npm i && node test.cjs
305309

306310
- name: bun with-javascript-browser
307-
if: matrix.os != 'windows-latest' #cannot launch browsers on windows with bash in commonjs?
311+
if: matrix.os != 'windows-latest' && matrix.os != 'LinuxARM64' #cannot launch browsers on windows with bash in commonjs?
308312
working-directory: examples/with-javascript-browser
309313
run: bun i && bun test.cjs
310314

311315
- name: deno with-javascript-browser
312-
if: matrix.os != 'windows-latest' #https://github.com/denoland/deno/issues/23524#issuecomment-2292075726
316+
if: matrix.os != 'windows-latest' && matrix.os != 'LinuxARM64' #https://github.com/denoland/deno/issues/23524#issuecomment-2292075726
313317
uses: nick-fields/retry@v3 #doing this step with the retry action because sometimes in macos it gets stuck without failing
314318
with:
315319
timeout_seconds: 45

0 commit comments

Comments
 (0)