github actions: update recommended Rust to 1.82.0 #309
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: libcryptsetup cargo CI | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
branches: [master] | |
paths: | |
- '**/Cargo.toml' | |
- '.github/workflows/cargo.yml' | |
pull_request: | |
branches: [master] | |
paths: | |
- '**/Cargo.toml' | |
- '.github/workflows/cargo.yml' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
checks-with-ci-repo: | |
runs-on: ubuntu-20.04 | |
container: | |
image: fedora:40 # CURRENT DEVELOPMENT ENVIRONMENT | |
steps: | |
- name: Install git | |
run: dnf install -y git | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install dependencies for Fedora | |
run: > | |
dnf install -y | |
clang | |
cryptsetup-devel | |
curl | |
git | |
make | |
openssl-devel | |
python-requests | |
python-semantic_version | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: cargo | |
toolchain: 1.82.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 | |
# yamllint disable rule:line-length | |
run: | | |
# -sys | |
COMPARE_FEDORA_VERSIONS=./compare_fedora_versions MANIFEST_PATH=../../libcryptsetup-rs-sys/Cargo.toml FEDORA_RELEASE=rawhide IGNORE_ARGS="--ignore-category low" make -f ../../Makefile check-fedora-versions | |
COMPARE_FEDORA_VERSIONS=./compare_fedora_versions MANIFEST_PATH=../../libcryptsetup-rs-sys/Cargo.toml FEDORA_RELEASE=f40 IGNORE_ARGS="--ignore-category low" make -f ../../Makefile check-fedora-versions | |
COMPARE_FEDORA_VERSIONS=./compare_fedora_versions MANIFEST_PATH=../../libcryptsetup-rs-sys/Cargo.toml FEDORA_RELEASE=f39 IGNORE_ARGS="--ignore-category low" make -f ../../Makefile check-fedora-versions | |
# main | |
COMPARE_FEDORA_VERSIONS=./compare_fedora_versions MANIFEST_PATH=../../Cargo.toml FEDORA_RELEASE=rawhide IGNORE_ARGS="--ignore-category low --ignore-high=libcryptsetup-rs-sys --ignore-high=loopdev" make -f ../../Makefile check-fedora-versions | |
COMPARE_FEDORA_VERSIONS=./compare_fedora_versions MANIFEST_PATH=../../Cargo.toml FEDORA_RELEASE=f40 IGNORE_ARGS="--ignore-category low --ignore-high=libcryptsetup-rs-sys --ignore-high=loopdev" make -f ../../Makefile check-fedora-versions | |
COMPARE_FEDORA_VERSIONS=./compare_fedora_versions MANIFEST_PATH=../../Cargo.toml FEDORA_RELEASE=f39 IGNORE_ARGS="--ignore-category low --ignore-high=libcryptsetup-rs-sys --ignore-high=loopdev" make -f ../../Makefile check-fedora-versions | |
working-directory: ./ci/dependency_management |