Skip to content

Commit

Permalink
Merge pull request #150 from bgurney-rh/latest-1.75
Browse files Browse the repository at this point in the history
github actions: update recommended Rust to 1.75.0
  • Loading branch information
mulkieran authored Jan 3, 2024
2 parents d56f549 + 7f25911 commit decf827
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
components: cargo
toolchain: 1.74.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.75.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
- name: Check out ci repo
run: git clone https://github.com/stratis-storage/ci.git
- name: Run comparisons of version specs with available Fedora packages
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ jobs:
include:
# MANDATORY CHECKS USING CURRENT DEVELOPMENT COMPILER
- components: rustfmt
toolchain: 1.74.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.75.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
task: fmt-ci
- components: clippy
toolchain: 1.74.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.75.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
task: clippy
- components: cargo
toolchain: 1.74.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.75.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
task: build
- components: cargo
toolchain: 1.74.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.75.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
task: test
- components: cargo
toolchain: 1.74.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.75.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
task: docs-ci
- components: cargo
toolchain: 1.74.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.75.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
task: check-typos
# MANDATORY TESTING USING LOWEST SUPPORTED COMPILER
- components: cargo
Expand All @@ -52,13 +52,13 @@ jobs:
with:
components: ${{ matrix.components }}
toolchain: ${{ matrix.toolchain }}
- uses: baptiste0928/cargo-install@v2
with:
crate: typos-cli
- name: Install dependencies
run: |
sudo apt-get -q update
sudo apt-get -y install libblkid-dev
- name: Install typos-cli if required
# yamllint disable rule:line-length
run: ${{ matrix.task == 'check-typos' && 'cargo install typos-cli' || 'true' }}
- name: Test ${{ matrix.task }} on ${{ matrix.toolchain }} toolchain
run: make -f Makefile ${{ matrix.task }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
components: cargo
toolchain: 1.74.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.75.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
- name: Check out ci repo
run: git clone https://github.com/stratis-storage/ci.git
- name: Run comparisons of version specs with available Fedora packages
Expand Down

0 comments on commit decf827

Please sign in to comment.