From 159bcf4b509c9289debdc7b8be318b311913afcc Mon Sep 17 00:00:00 2001 From: Daniel Noland Date: Sat, 30 Nov 2024 12:26:48 -0700 Subject: [PATCH] Hack on per-commit build --- .github/workflows/dev.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 443bfcb..1d4602a 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -58,14 +58,14 @@ jobs: - '!(README.md|LICENSE|design-docs/**|.gitignore|.github/**)' - '.github/workflows/dev.yml' - history: - name: "Deduce required tests from code changes" + commits: + name: "Deduce commit history" permissions: contents: "read" pull-requests: "read" runs-on: "ubuntu-latest" outputs: - commits: "${{ steps.changes.outputs.commits }}" + commits: "${{ steps.commits.outputs.commits }}" steps: - name: "install jq" run: | @@ -85,13 +85,13 @@ jobs: | tee -a "${GITHUB_OUTPUT}" build: - needs: [ check_changes, history ] + needs: [ check_changes, commits ] if: "${{ needs.check_changes.outputs.devfiles == 'true' }}" strategy: fail-fast: false max-parallel: 4 matrix: - commit: ${{ fromJSON(needs.history.outputs.commits) }} + commit: ${{ fromJSON(needs.commits.outputs.commits) }} rust: - "stable" - "beta"