File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ jobs:
124
124
run : git clone --depth 1 --single-branch -b main https://github.com/git-for-windows/build-extra /usr/src/build-extra
125
125
126
126
- name : update the SDK ("pacman -Syyu")
127
+ timeout-minutes : 20
127
128
shell : powershell
128
129
run : |
129
130
& ("${{ steps.setup-sdk.outputs.result }}\update-via-pacman.ps1")
@@ -162,6 +163,7 @@ jobs:
162
163
bash -lc "set -x && rebase -v -i /usr/lib/perl5/core_perl/auto/Cwd/Cwd.dll"
163
164
164
165
- name : Get GPG key(s)
166
+ timeout-minutes : 5
165
167
shell : bash
166
168
env :
167
169
CARCH : x86_64 # dummy, to allow sourcing cv2pdb's PKGBUILD as-is
@@ -203,6 +205,7 @@ jobs:
203
205
echo "SIGNTOOL=git signtool" >>$GITHUB_ENV
204
206
205
207
- name : Build ${{env.PACKAGE_TO_BUILD}}
208
+ timeout-minutes : ${{ env.PACKAGE_TO_BUILD== 'mingw-w64-llvm' && 360 || 150 }}
206
209
env :
207
210
GPGKEY : ${{secrets.GPGKEY}}
208
211
MAKEPKG : ${{ env.REPO != 'MSYS2-packages' && env.PACKAGE_TO_BUILD != 'git-for-windows-keyring' && 'makepkg-mingw' || 'makepkg' }}
Original file line number Diff line number Diff line change 23
23
type : string
24
24
required : true
25
25
description : Deallocate the runner immediately after creating it (useful for spinning up runners preemptively)
26
- default : false
26
+ default : " false"
27
27
28
28
env :
29
29
ACTIONS_RUNNER_SCOPE : ${{ github.event.inputs.runner_scope }}
@@ -157,6 +157,7 @@ jobs:
157
157
deploymentName : deploy-${{ steps.generate-vm-name.outputs.vm_name }}
158
158
template : ./azure-self-hosted-runners/azure-arm-template.json
159
159
parameters : ./azure-self-hosted-runners/azure-arm-template-example-parameters.json ${{ env.AZURE_ARM_PARAMETERS }}
160
+ scope : resourcegroup
160
161
161
162
- name : Show post-deployment script output
162
163
env :
Original file line number Diff line number Diff line change @@ -261,6 +261,7 @@ jobs:
261
261
echo -n "$CODESIGN_PASS" >.sig/codesign.pass
262
262
git config --global alias.signtool '!sh "/usr/src/build-extra/signtool.sh"'
263
263
- name : Prepare home directory for GPG signing
264
+ timeout-minutes : 5
264
265
if : env.GPGKEY != '' && steps.restore-cached-git-pkg.outputs.cache-hit != 'true'
265
266
run : |
266
267
echo '${{secrets.PRIVGPGKEY}}' | tr % '\n' | gpg $GPG_OPTIONS --import &&
@@ -277,6 +278,7 @@ jobs:
277
278
private-key : ${{ secrets.GH_APP_PRIVATE_KEY }}
278
279
append-text : ' About to build the `${{env.MINGW_PACKAGE_PREFIX}}-git` package'
279
280
- name : Build ${{env.MINGW_PACKAGE_PREFIX}}-git
281
+ timeout-minutes : 60
280
282
if : steps.restore-cached-git-pkg.outputs.cache-hit != 'true'
281
283
env :
282
284
GPGKEY : " ${{secrets.GPGKEY}}"
You can’t perform that action at this time.
0 commit comments