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

Disable broken workflows #525

Merged
merged 1 commit into from
Sep 17, 2021
Merged
Show file tree
Hide file tree
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
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