Skip to content

Commit

Permalink
CI: more windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hhugo committed Jan 16, 2025
1 parent ca39c4e commit b6e3516
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/build-wasm_of_ocaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
ocaml-compiler: "5.2"
separate_compilation: true
jane_street_tests: true
all_jane_street_tests: false
all_jane_street_tests: true
- os: ubuntu-latest
ocaml-compiler: "5.2"
separate_compilation: true
Expand Down Expand Up @@ -136,57 +136,66 @@ jobs:
run: opam exec -- dune build @runtest-wasm --profile with-effects

- name: Run Base tests
if: ${{ matrix.all_jane_street_tests || matrix.os == 'windows-latest' }}
if: matrix.all_jane_street_tests
working-directory: ./janestreet/lib/base
run: opam exec -- dune runtest

- name: Run Base bigstring tests
if: matrix.all_jane_street_tests
continue-on-error: ${{ matrix.os == 'windows-latest' }}
working-directory: ./janestreet/lib/base_bigstring
run: opam exec -- dune runtest

- name: Run Core tests
if: matrix.all_jane_street_tests
continue-on-error: ${{ matrix.os == 'windows-latest' }}
working-directory: ./janestreet/lib/core
run: opam exec -- dune runtest

- name: Run Bignum tests
if: ${{ matrix.all_jane_street_tests || matrix.os == 'windows-latest' }}
if: matrix.all_jane_street_tests
working-directory: ./janestreet/lib/bignum
run: opam exec -- dune runtest

- name: Run Bin_prot tests
if: matrix.all_jane_street_tests
continue-on-error: ${{ matrix.os == 'windows-latest' }}
working-directory: ./janestreet/lib/bin_prot
run: opam exec -- dune runtest

- name: Run String_dict tests
if: matrix.all_jane_street_tests
continue-on-error: ${{ matrix.os == 'windows-latest' }}
working-directory: ./janestreet/lib/string_dict
run: opam exec -- dune runtest

- name: Run Zarith tests
if: matrix.all_jane_street_tests
continue-on-error: ${{ matrix.os == 'windows-latest' }}
working-directory: ./janestreet/lib/zarith_stubs_js
run: opam exec -- dune runtest

- name: Run Virtual_dom tests
if: matrix.all_jane_street_tests
continue-on-error: ${{ matrix.os == 'windows-latest' }}
working-directory: ./janestreet/lib/virtual_dom
run: opam exec -- dune runtest

- name: Run Bonsai tests
if: matrix.all_jane_street_tests
continue-on-error: ${{ matrix.os == 'windows-latest' }}
working-directory: ./janestreet/lib/bonsai_test
run: opam exec -- dune runtest

- name: Run Bonsai web tests
if: matrix.all_jane_street_tests
continue-on-error: ${{ matrix.os == 'windows-latest' }}
working-directory: ./janestreet/lib/bonsai_web_test
run: opam exec -- dune runtest

- name: Run Bonsai web components' tests
if: matrix.all_jane_street_tests
continue-on-error: ${{ matrix.os == 'windows-latest' }}
working-directory: ./janestreet/lib/bonsai_web_components
run: opam exec -- dune runtest

Expand Down

0 comments on commit b6e3516

Please sign in to comment.