Skip to content

Commit

Permalink
ci: run ci with specified versions of rust (#547)
Browse files Browse the repository at this point in the history
The tests were running with ambiant version of rust.
GitHub just updated the rust version to 1.79
https://github.com/actions/runner-images/blob/ubuntu22/20240616.1/images/ubuntu/Ubuntu2204-Readme.md
  • Loading branch information
baloo authored Jun 27, 2024
1 parent 0d8b1c9 commit 011764b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 43 deletions.
48 changes: 5 additions & 43 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,33 +14,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
toolchain:
- stable
- 1.67.0 # MSRV
steps:
- uses: actions/checkout@v1
- name: cache .cargo/registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('Cargo.lock') }}
- name: cache .cargo/git
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('Cargo.lock') }}
- name: cache target
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-rust-${{ matrix.toolchain }}-cargo-build-target-${{ hashFiles('Cargo.lock') }}
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
override: true
- run: cargo build --release
- run: cargo build --release --no-default-features
- run: cargo build --release --no-default-features --features=passwords
Expand All @@ -51,42 +32,25 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
toolchain:
- stable
- 1.67.0 # MSRV
steps:
- uses: actions/checkout@v1
- name: cache .cargo/registry
uses: actions/cache@v1
- uses: dtolnay/rust-toolchain@master
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('Cargo.lock') }}
- name: cache .cargo/git
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('Cargo.lock') }}
- name: cache target
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-rust-${{ matrix.toolchain }}-cargo-build-target-${{ hashFiles('Cargo.lock') }}
toolchain: ${{ matrix.toolchain }}
- run: cargo test --features=mockhsm,secp256k1,untested

rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@master
with:
profile: minimal
toolchain: stable
components: rustfmt
override: true
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
Expand All @@ -97,12 +61,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@master
with:
profile: minimal
toolchain: 1.71.0 # pinned to prevent CI breakages
components: clippy
override: true
- uses: actions-rs/cargo@v1
with:
command: clippy
Expand Down
1 change: 1 addition & 0 deletions tests/test_vectors/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pub use self::ed25519::ED25519_TEST_VECTORS;
pub use self::hmac::HMAC_SHA256_TEST_VECTORS;

/// Authenticated encryption test vector (presently specialized for AES-CCM)
#[allow(dead_code)]
pub struct EncryptionTestVector {
/// Encryption key
pub key: &'static [u8],
Expand Down

0 comments on commit 011764b

Please sign in to comment.