mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-31 10:41:08 +00:00
ci: Make the max number of commits tested explicit
Gives less of a false sense of security.
This commit is contained in:
parent
b126f98194
commit
b5a7a685bb
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -56,12 +56,12 @@ jobs:
|
||||
fi
|
||||
|
||||
test-each-commit:
|
||||
name: 'test each commit'
|
||||
name: 'test max 6 ancestor commits'
|
||||
runs-on: ubuntu-24.04
|
||||
if: github.event_name == 'pull_request' && github.event.pull_request.commits != 1
|
||||
timeout-minutes: 360 # Use maximum time, see https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes. Assuming a worst case time of 1 hour per commit, this leads to a --max-count=6 below.
|
||||
env:
|
||||
MAX_COUNT: 6
|
||||
MAX_COUNT: 6 # Keep in sync with name above
|
||||
steps:
|
||||
- name: Determine fetch depth
|
||||
run: echo "FETCH_DEPTH=$((${{ github.event.pull_request.commits }} + 2))" >> "$GITHUB_ENV"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user