loopdev-3 nightly #256
This file contains hidden or 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: loopdev-3 nightly | |
| # yamllint disable-line rule:truthy | |
| on: | |
| schedule: | |
| - cron: 5 3 * * * | |
| workflow_dispatch: | |
| jobs: | |
| checks-with-ci-repo: | |
| runs-on: ubuntu-22.04 | |
| container: | |
| image: fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT | |
| steps: | |
| - name: Install git for checkout action | |
| run: dnf install -y git | |
| - uses: actions/checkout@v6 | |
| with: | |
| path: loopdev-3 | |
| persist-credentials: false | |
| - name: Install dependencies for Fedora | |
| run: > | |
| dnf install -y | |
| curl | |
| make | |
| openssl-devel | |
| python-requests | |
| python-semantic_version | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| components: cargo | |
| toolchain: 1.92.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN | |
| - name: Check out ci repo | |
| uses: actions/checkout@v6 | |
| with: | |
| path: ci | |
| repository: stratis-storage/ci | |
| persist-credentials: false | |
| - name: Run comparisons of version specs with Fedora packages | |
| # yamllint disable rule:line-length | |
| run: | | |
| COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=rawhide make -f Makefile check-fedora-versions | |
| COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f43 make -f Makefile check-fedora-versions | |
| COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f42 make -f Makefile check-fedora-versions | |
| working-directory: loopdev-3 | |
| semver-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Do semantic version checks | |
| uses: obi1kenobi/cargo-semver-checks-action@v2 | |
| with: | |
| verbose: true | |
| rust-toolchain: 1.92.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN |