Skip to content

Commit

Permalink
Fix the test builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Jul 21, 2023
1 parent 5d131f6 commit 893d857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
crypto-backend: ['openssl', 'rustcrypto', 'mbedtls']
crypto-backend: ['rustcrypto', 'mbedtls', 'openssl']

steps:
- uses: actions/checkout@v2
- name: Build
run: cd matter; cargo build --no-default-features --features ${{matrix.crypto-backend}}
- name: Run tests
run: cd matter; cargo test --no-default-features --features ${{matrix.crypto-backend}} -- --test-threads=1
run: cd matter; cargo test --no-default-features --features std,${{matrix.crypto-backend}} -- --test-threads=1

0 comments on commit 893d857

Please sign in to comment.