Bump softprops/action-gh-release from 1 to 2 #2
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: CI | |
on: | |
pull_request: | |
push: | |
branches: [main, master] | |
permissions: | |
id-token: "write" | |
contents: "read" | |
jobs: | |
build-x86_64-linux: | |
uses: ./.github/workflows/build-x86_64-linux.yml | |
build-aarch64-linux: | |
uses: ./.github/workflows/build-aarch64-linux.yml | |
lints: | |
name: Lints | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: "write" | |
contents: "read" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Nixpkgs input | |
uses: DeterminateSystems/flake-checker-action@main | |
with: | |
fail-mode: true | |
check-outdated: false # PRs shouldn't fail because main's nixpkgs is out of date | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
flakehub: true | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
with: | |
use-gha-cache: false | |
- name: Check rustfmt | |
run: nix develop --command check-rustfmt | |
- name: Check Clippy | |
run: nix develop --command check-clippy | |
- name: Check Spelling | |
run: nix develop --command check-spelling | |
- name: Check nixpkgs-fmt formatting | |
run: nix develop --command check-nixpkgs-fmt | |
- name: Check EditorConfig conformance | |
run: nix develop --command check-editorconfig | |
- name: Shell check for nix-installer.sh | |
run: nix develop --command shellcheck ./nix-installer.sh | |
run-x86_64-linux: | |
name: Run x86_64 Linux | |
runs-on: ubuntu-latest | |
needs: [lints, build-x86_64-linux] | |
permissions: | |
id-token: "write" | |
contents: "read" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restore Github cache artifacts | |
uses: actions/cache/restore@v3 | |
with: | |
path: nixsa.tar.xz | |
key: x86_64-linux-artifacts-${{ github.sha }} | |
- name: Check tarball | |
run: nixsa-build/check_tarball.py nixsa.tar.xz | |
run-aarch64-linux: | |
name: Run aarch64 Linux | |
runs-on: namespace-profile-default-arm64 | |
needs: [lints, build-aarch64-linux] | |
permissions: | |
id-token: "write" | |
contents: "read" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restore Github cache artifacts | |
uses: actions/cache/restore@v3 | |
with: | |
path: nixsa.tar.xz | |
key: aarch64-linux-artifacts-${{ github.sha }} | |
- name: Check tarball | |
run: nixsa-build/check_tarball.py nixsa.tar.xz | |