Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
keks committed Oct 8, 2024
1 parent e76a82d commit a4da037
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,21 @@ jobs:
- name: Tests
if: matrix.os != 'windows-latest'
run: cargo test $TEST_MODE -p openmls --verbose
run: cargo test $TEST_MODE -p openmls --verbose -F test-skip-lifetime-validity-check passive_client
run: |
cargo test $TEST_MODE -p openmls --verbose
cargo test $TEST_MODE -p openmls --verbose -F test-skip-lifetime-validity-check passive_client
# Test 32 bit builds on windows
- name: Tests 32bit windows debug
if: matrix.mode == 'debug' && matrix.os == 'windows-latest'
run: cargo test -p openmls --verbose --target i686-pc-windows-msvc
run: cargo test -p openmls --verbose --target i686-pc-windows-msvc -F test-skip-lifetime-validity-check passive_client
run: |
cargo test -p openmls --verbose --target i686-pc-windows-msvc
cargo test -p openmls --verbose --target i686-pc-windows-msvc -F test-skip-lifetime-validity-check passive_client
- name: Tests 32bit windows release
if: matrix.mode == 'release' && matrix.os == 'windows-latest'
run: cargo test --release -p openmls --verbose --target i686-pc-windows-msvc
run: cargo test --release -p openmls --verbose --target i686-pc-windows-msvc -F test-skip-lifetime-validity-check passive_client
run: |
cargo test --release -p openmls --verbose --target i686-pc-windows-msvc
cargo test --release -p openmls --verbose --target i686-pc-windows-msvc -F test-skip-lifetime-validity-check passive_client
# Test 32 bit builds on linux
- name: Tests 32bit linux
Expand Down

0 comments on commit a4da037

Please sign in to comment.