Update README.md #18
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: Eval | |
on: pull_request_target | |
permissions: | |
contents: read | |
jobs: | |
attrs: | |
name: Attrs | |
runs-on: ubuntu-latest | |
outputs: | |
systems: ${{ steps.systems.outputs.systems }} | |
mergedSha: ${{ steps.merged.outputs.mergedSha }} | |
steps: | |
# Important: Because of `pull_request_target`, this doesn't check out the PR, | |
# but rather the base branch of the PR, which is needed so we don't run untrusted code | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
path: base | |
sparse-checkout: ci | |
- name: Resolving the merge commit | |
id: merged | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
if mergedSha=$(base/ci/get-merge-commit.sh ${{ github.repository }} ${{ github.event.number }}); then | |
echo "Checking the merge commit $mergedSha" | |
echo "mergedSha=$mergedSha" >> "$GITHUB_OUTPUT" | |
else | |
# Skipping so that no notifications are sent | |
echo "Skipping the rest..." | |
fi | |
rm -rf base | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# Add this to _all_ subsequent steps to skip them | |
if: steps.merged.outputs.mergedSha | |
with: | |
ref: ${{ env.mergedSha }} | |
path: nixpkgs | |
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 | |
if: steps.merged.outputs.mergedSha | |
- id: systems | |
if: steps.merged.outputs.mergedSha | |
run: | | |
nix-build nixpkgs/ci -A eval.evalPlan | |
echo "systems=$(<result/systems.json)" >> "$GITHUB_OUTPUT" | |
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
if: steps.merged.outputs.mergedSha | |
with: | |
name: eval-plan | |
path: result/systems | |
eval: | |
name: Eval | |
runs-on: ubuntu-latest | |
needs: attrs | |
if: needs.attrs.outputs.mergedSha | |
strategy: | |
matrix: | |
system: ${{ fromJSON(needs.attrs.outputs.systems) }} | |
steps: | |
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: eval-plan | |
path: systems | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ needs.attrs.outputs.mergedSha }} | |
path: nixpkgs | |
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 | |
- name: Check eval | |
run: nix-build nixpkgs/ci -A eval.singleSystem --arg jobDir systems/${{ matrix.system }} | |
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
if: needs.attrs.outputs.mergedSha | |
with: | |
name: result-${ matrix.system }} | |
path: result/paths |