GHA: Upgrade actions/checkout to v4.1.1 #62
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
# Possibly reproducible build with cross-rs and Nix | |
name: "Reproducible build with cross-rs" | |
on: | |
push: | |
paths-ignore: | |
- 'nix-rust-overlay/**' | |
branches: | |
- 'main' | |
pull_request: | |
paths-ignore: | |
- 'nix-rust-overlay/**' | |
branches: | |
- 'main' | |
jobs: | |
nix-cross-rs-build: | |
name: "r10e cross-rs build" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Cross build artifacts | |
run: | | |
cd ${{ github.workspace }} | |
make cross-rs |