mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
.github/workflows/wait-ofborg.yml: double timeout if staging
This commit is contained in:
parent
c2a3988d6c
commit
6a7f761d73
9
.github/workflows/wait-ofborg.yml
vendored
9
.github/workflows/wait-ofborg.yml
vendored
@ -7,9 +7,12 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Wait for ofborg CI
|
- name: Wait for ofborg CI
|
||||||
run: |
|
run: |
|
||||||
# wait for ~30min...
|
# eval sometimes takes a bit longer on staging.
|
||||||
|
if [[ "$BASE_BRANCH" == "refs/heads/staging" ]]; then
|
||||||
|
COUNTDOWN=$((COUNTDOWN*2))
|
||||||
|
fi
|
||||||
# ..in future a better fix would be to make ofborg mark CI as pending right away.
|
# ..in future a better fix would be to make ofborg mark CI as pending right away.
|
||||||
for i in $(seq 360); do
|
for i in $(seq "$COUNTDOWN"); do
|
||||||
res=$(curl --silent \
|
res=$(curl --silent \
|
||||||
-H "Accept: application/vnd.github.antiope-preview+json" \
|
-H "Accept: application/vnd.github.antiope-preview+json" \
|
||||||
-H "Authorization: token ${GITHUB_TOKEN}" \
|
-H "Authorization: token ${GITHUB_TOKEN}" \
|
||||||
@ -26,6 +29,8 @@ jobs:
|
|||||||
# ofborg is not checking forks.
|
# ofborg is not checking forks.
|
||||||
if: github.repository_owner == 'NixOS'
|
if: github.repository_owner == 'NixOS'
|
||||||
env:
|
env:
|
||||||
|
BASE_BRANCH: ${{ github.base_ref }}
|
||||||
|
COUNTDOWN: 360 # wait for ~30min...
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
COMMIT: ${{ github.event.pull_request.head.sha }}
|
COMMIT: ${{ github.event.pull_request.head.sha }}
|
||||||
OFBORG_APP_ID: 20500
|
OFBORG_APP_ID: 20500
|
||||||
|
Loading…
Reference in New Issue
Block a user