at 24.11-pre 1.1 kB view raw
1name: Basic evaluation checks 2 3on: 4 workflow_dispatch 5 # pull_request: 6 # branches: 7 # - master 8 # - release-** 9 # push: 10 # branches: 11 # - master 12 # - release-** 13permissions: 14 contents: read 15 16jobs: 17 tests: 18 runs-on: ubuntu-latest 19 # we don't limit this action to only NixOS repo since the checks are cheap and useful developer feedback 20 steps: 21 - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 22 - uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26 23 - uses: cachix/cachix-action@18cf96c7c98e048e10a83abd92116114cd8504be # v14 24 with: 25 # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. 26 name: nixpkgs-ci 27 signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' 28 # explicit list of supportedSystems is needed until aarch64-darwin becomes part of the trunk jobset 29 - run: nix-build pkgs/top-level/release.nix -A release-checks --arg supportedSystems '[ "aarch64-darwin" "aarch64-linux" "x86_64-linux" "x86_64-darwin" ]'