Skip to content

Commit

Permalink
Merge pull request #2937 from bgurney-rh/latest-1.59
Browse files Browse the repository at this point in the history
github actions: update recommended Rust to 1.59
  • Loading branch information
mulkieran authored Mar 1, 2022
2 parents ef5289c + 0360f21 commit 4ea2892
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
components: cargo
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
override: true
- name: Check out ci repo
run: git clone https://github.com/stratis-storage/ci.git
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@ jobs:
matrix:
include:
- task: make -f Makefile fmt-travis
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: rustfmt
- task: make -f Makefile clippy
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: clippy
- task: make -f Makefile build
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile build-min
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile build-extras
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile docs-travis
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile test
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile release
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile release-min
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
runs-on: ubuntu-18.04
container:
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
matrix:
include:
- task: RUST_LOG=stratisd=debug make -f Makefile test-loop
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
runs-on: ubuntu-18.04
container:
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
TANG_URL=tang
RUST_LOG=stratisd=debug
make -f Makefile test-clevis-loop
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
image: fedora:35 # CURRENT DEVELOPMENT ENVIRONMENT
runs-on: ubuntu-18.04
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
components: cargo
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
override: true
- name: Check out ci repo
run: git clone https://github.com/stratis-storage/ci.git
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
matrix:
include:
- task: make -f Makefile audit
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
# Allowed because a failure may occur after a new Rust stable
# version is released.
- task: make -f Makefile clippy
toolchain: stable
components: clippy
- task: cargo package
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
runs-on: ubuntu-18.04
container:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
components: cargo
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
override: true
- name: Check out ci repo
run: git clone https://github.com/stratis-storage/ci.git
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
components: cargo
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
override: true
- name: Build stratisd
run: PROFILEDIR=debug make -f Makefile install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
include:
# MANDATORY CHECKS USING CURRENT DEVELOPMENT ENVIRONMENT
- image: fedora:35 # CURRENT DEVELOPMENT ENVIRONMENT
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
skip_value: 0
# MANDATORY CHECKS USING LOWEST SUPPORTED ENVIRONMENT PROXY
- image: fedora:30 # LOWEST DEVELOPMENT ENVIRONMENT
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
components: cargo
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
override: true
- name: Install all necessary Stratis files
run: PROFILEDIR=debug make -f Makefile install
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,28 +28,28 @@ jobs:
matrix:
include:
- task: make -f Makefile clippy
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: clippy
- task: make -f Makefile build
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile build-min
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile build-extras
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile docs-travis
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile test
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile release
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
- task: make -f Makefile release-min
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
runs-on: ubuntu-18.04
container:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
matrix:
include:
- task: RUST_LOG=stratisd=debug make -f Makefile test-loop
toolchain: 1.58.1 # CURRENT DEVELOPMENT RUST TOOLCHAIN
toolchain: 1.59.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
runs-on: ubuntu-18.04
container:
Expand Down

0 comments on commit 4ea2892

Please sign in to comment.