Skip to content

Commit

Permalink
Disable audit job on ci (#96)
Browse files Browse the repository at this point in the history
* Disable audit job on ci
* disable bogo for now on ci (see #97)
  • Loading branch information
franziskuskiefer authored Mar 4, 2024
1 parent 49f4662 commit 99726ee
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,23 +38,24 @@ jobs:
- name: Test code w/ secret-integers
run: cargo test --workspace --features secret_integers

- name: BoGo
if: matrix.os != 'windows-latest'
run: BORINGSSL_ROOT=./boringssl ./bogo_shim/run.sh
# FIXME: Pin and enable bogo again
# - name: BoGo
# if: matrix.os != 'windows-latest'
# run: BORINGSSL_ROOT=./boringssl ./bogo_shim/run.sh

audit:
needs: test
runs-on: ubuntu-latest
# audit:
# needs: test
# runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
# steps:
# - name: Checkout code
# uses: actions/checkout@v4

- name: Audit dependencies
uses: EmbarkStudios/cargo-deny-action@v1
# TODO: Check licenses, too.
with:
command: check bans advisories sources
# - name: Audit dependencies
# uses: EmbarkStudios/cargo-deny-action@v1
# # TODO: Check licenses, too.
# with:
# command: check bans advisories sources

lint:
needs: test
Expand Down

0 comments on commit 99726ee

Please sign in to comment.