Skip to content

Commit fc35d7f

Browse files
committed
test fix arm64 edge
1 parent f31c43d commit fc35d7f

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/test.yml

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

6767
- name: setup playwright for browser related test
68-
if: matrix.os != 'LinuxARM64'
69-
run: npx playwright install --with-deps && npx playwright install msedge && npx playwright install chrome
68+
run: |
69+
npx playwright install --with-deps
70+
if [ "${{matrix.os}}]" != "LinuxARM64" ]; then
71+
npx playwright install msedge
72+
fi
73+
npx playwright install chrome
7074
7175
- name: build driver
7276
run: npm i && npm run build
@@ -274,14 +278,12 @@ jobs:
274278
run: rm -rf examples/with-typescript-nextjs
275279

276280
- name: node with-javascript-vite
277-
if: matrix.os != 'LinuxARM64'
278281
working-directory: examples/with-javascript-vite
279282
run: npm i && npx playwright test
280283
env:
281284
VITE_DATABASE_URL: ${{ secrets.CHINOOK_DATABASE_URL }}
282285

283286
- name: bun with-javascript-vite
284-
if: matrix.os != 'LinuxARM64'
285287
working-directory: examples/with-javascript-vite
286288
run: |
287289
if [ "$RUNNER_OS" != "Windows" ]; then
@@ -303,17 +305,16 @@ jobs:
303305
run: rm -rf examples/with-javascript-vite
304306

305307
- name: node with-javascript-browser
306-
if: matrix.os != 'LinuxARM64'
307308
working-directory: examples/with-javascript-browser
308309
run: npm i && node test.cjs
309310

310311
- name: bun with-javascript-browser
311-
if: matrix.os != 'windows-latest' && matrix.os != 'LinuxARM64' #cannot launch browsers on windows with bash in commonjs?
312+
if: matrix.os != 'windows-latest' #cannot launch browsers on windows with bash in commonjs?
312313
working-directory: examples/with-javascript-browser
313314
run: bun i && bun test.cjs
314315

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sqlitecloud/drivers",
3-
"version": "1.0.400",
3+
"version": "1.0.401",
44
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",

0 commit comments

Comments
 (0)