Skip to content

Commit

Permalink
Hack on per-commit build
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-noland committed Nov 30, 2024
1 parent 2659d2a commit 159bcf4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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"
Expand Down

0 comments on commit 159bcf4

Please sign in to comment.