Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test amalgamated build on Windows #969

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@ jobs:
run: |
cl.exe /DJS_NAN_BOXING=0 /Zs cxxtest.cc
cl.exe /DJS_NAN_BOXING=1 /Zs cxxtest.cc
- name: test amalgamation
run: |
build\${{matrix.buildType}}\qjs.exe amalgam.js
cl.exe /std:c11 /experimental:c11atomics quickjs-amalgam.c api-test.c /Fe:amalgam-api-test.exe
.\amalgam-api-test.exe

windows-msvc-vs2019:
runs-on: windows-2019
Expand Down Expand Up @@ -383,6 +388,12 @@ jobs:
- name: test api
run: |
./build/api-test
- name: test amalgamation
run: |
./build/qjs amalgam.js
cc -Wall -I. quickjs-amalgam.c api-test.c -o amalgam-api-test -lm
./amalgam-api-test

windows-mingw-shared:
runs-on: windows-latest
defaults:
Expand Down Expand Up @@ -570,7 +581,7 @@ jobs:
amalgam:
strategy:
matrix:
# TODO(bnoordhuis) test on windows
# Windows is tested as part of windows-msvc
config:
- { os: ubuntu-latest }
- { os: macos-latest }
Expand Down
Loading