mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
ci: bump fetch depth to unblock canary uploads (#25716)
Current mac arm canaries are failing to upload because the existing latest commit hash is more that 5 commits behind and it's not in the git history.
This commit is contained in:
parent
c3bc692842
commit
fd23e8ec4f
2
.github/workflows/ci.generate.ts
vendored
2
.github/workflows/ci.generate.ts
vendored
@ -158,7 +158,7 @@ const cloneRepoStep = [{
|
||||
// Use depth > 1, because sometimes we need to rebuild main and if
|
||||
// other commits have landed it will become impossible to rebuild if
|
||||
// the checkout is too shallow.
|
||||
"fetch-depth": 5,
|
||||
"fetch-depth": 50,
|
||||
submodules: false,
|
||||
},
|
||||
}];
|
||||
|
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -33,7 +33,7 @@ jobs:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 5
|
||||
fetch-depth: 50
|
||||
submodules: false
|
||||
if: github.event.pull_request.draft == true
|
||||
- id: check
|
||||
@ -148,7 +148,7 @@ jobs:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 5
|
||||
fetch-depth: 50
|
||||
submodules: false
|
||||
if: '!(matrix.skip)'
|
||||
- name: Clone submodule ./tests/util/std
|
||||
|
Loading…
Reference in New Issue
Block a user