Skip to content

Commit

Permalink
Merge pull request #525 from ionut-arm/fix-ci
Browse files Browse the repository at this point in the history
Disable broken workflows
  • Loading branch information
ionut-arm authored Sep 17, 2021
2 parents c1ba7e0 + 6720450 commit 48d55aa
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 28 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,20 @@ jobs:
# When running the container built on the CI
# run: docker run -v $(pwd):/tmp/parsec -w /tmp/parsec -t parsec-service-test-all /tmp/parsec/ci.sh cryptoauthlib --no-stress-test

fuzz-test-checker:
name: Check that the fuzz testing framework is still working
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Use the following step when updating the `parsec-service-test-all` image
# - name: Build the container
# run: pushd e2e_tests/docker_image && docker build -t parsec-service-test-all -f parsec-service-test-all.Dockerfile . && popd
- name: Run the fuzz test script
# Not running stress tests because rust-cryptoauthlib test-interface does not support required calls
run: ./fuzz.sh test
# When running the container built on the CI
# run: CONTAINER_TAG=parsec-service-test-all ./fuzz.sh test
# Disabled due to the issue discussed in https://github.com/parallaxsecond/parsec/issues/514
# fuzz-test-checker:
# name: Check that the fuzz testing framework is still working
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# # Use the following step when updating the `parsec-service-test-all` image
# # - name: Build the container
# # run: pushd e2e_tests/docker_image && docker build -t parsec-service-test-all -f parsec-service-test-all.Dockerfile . && popd
# - name: Run the fuzz test script
# # Not running stress tests because rust-cryptoauthlib test-interface does not support required calls
# run: ./fuzz.sh test
# # When running the container built on the CI
# # run: CONTAINER_TAG=parsec-service-test-all ./fuzz.sh test

cross-compilation:
# Currently only the Mbed Crypto, PKCS 11, and TPM providers are tested as the other ones need to cross-compile other libraries.
Expand Down
31 changes: 16 additions & 15 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,22 @@ on:
default: ""

jobs:
dependencies:
name: Check for unused dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: "${{ github.event.inputs.rev }}"
- name: Install latest Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: Install cargo udeps
run: cargo install cargo-udeps --locked
- name: Execute cargo udeps
run: cargo +nightly udeps
# Disabled due to the issue discussed in https://github.com/parallaxsecond/parsec/issues/514
# dependencies:
# name: Check for unused dependencies
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# with:
# ref: "${{ github.event.inputs.rev }}"
# - name: Install latest Rust
# uses: actions-rs/toolchain@v1
# with:
# toolchain: nightly
# - name: Install cargo udeps
# run: cargo install cargo-udeps --locked
# - name: Execute cargo udeps
# run: cargo +nightly udeps

audit:
name: Check for crates with security vulnerabilities
Expand Down

0 comments on commit 48d55aa

Please sign in to comment.