Skip to content

Commit 37211d7

Browse files
fix(ci): build splicer on windows
Signed-off-by: Victor Adossi <vadossi@cosmonic.com>
1 parent 6369b56 commit 37211d7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: make lib/spidermonkey-embedding-splicer.js
6868

6969
build:
70-
runs-on: ubuntu-latest
70+
runs-on: ${{ matrix.os }}
7171
needs:
7272
- build-splicer
7373
strategy:
@@ -77,6 +77,9 @@ jobs:
7777
- 'release'
7878
- 'debug'
7979
- 'weval'
80+
os:
81+
- windows-latest
82+
- ubuntu-latest
8083
steps:
8184
- uses: actions/checkout@v4
8285
with:

test/cases/http-server/test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export async function test(instance) {
1414

1515
try {
1616
const resp = await fetch(`http://localhost:${port}`);
17+
console.log("resp:", resp);
1718
const text = await resp.text();
1819
strictEqual(text, 'Hello world!');
1920
} finally {

0 commit comments

Comments
 (0)