Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
Signed-off-by: Erdem Meydanli <[email protected]>
  • Loading branch information
meerd committed Mar 29, 2024
1 parent d3d77e0 commit 46bc4ac
Showing 1 changed file with 71 additions and 58 deletions.
129 changes: 71 additions & 58 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,66 +6,79 @@ env:
RUSTFLAGS: -Dwarnings

jobs:
build:
name: Test on rust ${{matrix.rust}} (keys ${{ matrix.key_feature_set }})
integration_test:
name: Run integration tests
runs-on: ubuntu-latest
strategy:
matrix:
rust: [1.68.2, stable, nightly]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- uses: Swatinem/rust-cache@v2
- run: cargo build --all --locked

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: rustup component add clippy
- run: cargo clippy --all

fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check

audit:
name: Check dependencies for security issues
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo install --locked --version "~0.17" cargo-audit
- run: cargo audit --ignore RUSTSEC-2020-0159 --ignore RUSTSEC-2020-0071

license:
name: Check dependencies for licenses
runs-on: ubuntu-latest
outputs:
license_changed: ${{ steps.license_diff.outputs.license_changed }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo install --locked --version "0.5.0" cargo-about
- run: cargo about generate --workspace --output-file "${{ runner.temp }}/licenses.html" about.hbs
- id: license_diff
- id: compress_code
run: |
if diff -q THIRD_PARTY_LICENSES_RUST_CRATES.html ${{ runner.temp }}/licenses.html ; then
echo "license_changed=NO" >> $GITHUB_OUTPUT
else
echo "license_changed=YES" >> $GITHUB_OUTPUT
fi
du -sh .
rm -rf .git*
du -sh .
XZ_OPT='-3' tar -cvJf ${{ runner.temp }}/aws-nitro-enclaves-cli.tar.xz .
ls -la ${{ runner.temp }}
# build:
# name: Test on rust ${{matrix.rust}} (keys ${{ matrix.key_feature_set }})
# runs-on: ubuntu-latest
# strategy:
# matrix:
# rust: [1.68.2, stable, nightly]
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@master
# with:
# toolchain: ${{matrix.rust}}
# - uses: Swatinem/rust-cache@v2
# - run: cargo build --all --locked
#
# clippy:
# name: Clippy
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
# - uses: Swatinem/rust-cache@v2
# - run: rustup component add clippy
# - run: cargo clippy --all
#
# fmt:
# name: Rustfmt
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
# - uses: Swatinem/rust-cache@v2
# - run: rustup component add rustfmt
# - run: cargo fmt --all -- --check
#
# audit:
# name: Check dependencies for security issues
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
# - uses: Swatinem/rust-cache@v2
# - run: cargo install --locked --version "~0.17" cargo-audit
# - run: cargo audit --ignore RUSTSEC-2020-0159 --ignore RUSTSEC-2020-0071
#
# license:
# name: Check dependencies for licenses
# runs-on: ubuntu-latest
# outputs:
# license_changed: ${{ steps.license_diff.outputs.license_changed }}
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
# - uses: Swatinem/rust-cache@v2
# - run: cargo install --locked --version "0.5.0" cargo-about
# - run: cargo about generate --workspace --output-file "${{ runner.temp }}/licenses.html" about.hbs
# - id: license_diff
# run: |
# if diff -q THIRD_PARTY_LICENSES_RUST_CRATES.html ${{ runner.temp }}/licenses.html ; then
# echo "license_changed=NO" >> $GITHUB_OUTPUT
# else
# echo "license_changed=YES" >> $GITHUB_OUTPUT
# fi
#

0 comments on commit 46bc4ac

Please sign in to comment.