-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci skip] Open Issue if nightly Azure build fails (#99)
- Loading branch information
1 parent
30a84e2
commit a05739d
Showing
3 changed files
with
120 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
# Check status of Azure build. Open Issue if failed | ||
# | ||
# https://learn.microsoft.com/en-us/rest/api/azure/devops/build/status/get | ||
# | ||
# Usage: bash check-azure-status.sh <azure-build-id> <azure-build-name> | ||
# bash check-azure-status.sh 4 tiledbfeedstock_CI | ||
# | ||
# Requires env var GH_TOKEN with a GitHub token with write-access to Issues | ||
|
||
AZURE_ORG="TileDB-Inc" | ||
AZURE_PROJECT="CI" | ||
AZURE_BUILD_ID="$1" | ||
AZURE_BUILD_NAME="$2" | ||
AZURE_BUILD_BRANCH="nightly-build" | ||
|
||
echo "Checking status of branch $AZURE_BUILD_BRANCH" \ | ||
"for build $AZURE_BUILD_NAME (id: $AZURE_BUILD_ID) in $AZURE_ORG/$AZURE_PROJECT" | ||
|
||
ENDPOINT="https://dev.azure.com/$AZURE_ORG/$AZURE_PROJECT/_apis/build/status/$AZURE_BUILD_NAME?branchName=$AZURE_BUILD_BRANCH" | ||
|
||
if curl -sL $ENDPOINT | grep -q succeeded | ||
then | ||
echo "Build succeeded" | ||
exit 0 | ||
fi | ||
|
||
echo "Build failed" | ||
curl -sL $ENDPOINT | tail -n 3 | ||
|
||
# Open Issue or comment on existing one | ||
|
||
theMessage="Nightly feedstock build failure for $AZURE_BUILD_NAME at https://dev.azure.com/$AZURE_ORG/$AZURE_PROJECT/_build?definitionId=$AZURE_BUILD_ID&_a=summary" | ||
echo $theMessage | ||
|
||
if [[ -z "$GH_TOKEN" ]] | ||
then | ||
echo "The env var GH_TOKEN is missing" | ||
echo "Please define it as a GitHub PAT with write permissions to Issues" | ||
exit 1 | ||
fi | ||
|
||
existing=$(gh issue list \ | ||
--label nightly-failure \ | ||
--limit 1 \ | ||
--jq '.[].number' \ | ||
--json "number" \ | ||
--state "open") | ||
|
||
if [[ -z "$existing" ]] | ||
then | ||
echo "Opening new issue" | ||
gh issue create \ | ||
--assignee "johnkerl,jdblischak" \ | ||
--body "$theMessage" \ | ||
--label "nightly-failure" \ | ||
--title "Nighly feedstock build failed" | ||
else | ||
echo "Commenting on existing issue" | ||
gh issue comment "$existing" \ | ||
--body "$theMessage" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Need to query the Azure Status API endpoint to determine if nightly | ||
# feedstock builds passed or failed | ||
# https://learn.microsoft.com/en-us/rest/api/azure/devops/build/status/get | ||
name: nightly-azure-status | ||
on: | ||
schedule: | ||
# https://crontab.guru/#0_11_*_*_* | ||
- cron: "0 11 * * *" # Every day at 11 AM UTC (6 AM EST; 7 AM EDT) | ||
workflow_dispatch: | ||
jobs: | ||
nightly-azure-status: | ||
# https://dev.azure.com/TileDB-Inc/CI/_build?definitionId=43&_a=summary&repositoryFilter=39&branchFilter=8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732 | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Check Azure Status API | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
run: bash .github/scripts/nightly/check-azure-status.sh 43 tiledbsoma-feedstock | ||
# This Issue is opened only if there was a technical problem with this GitHub | ||
# workflow. The jobs above open an Issue if they detect a failed Azure build | ||
issue: | ||
permissions: | ||
issues: write | ||
runs-on: ubuntu-latest | ||
needs: nightly-azure-status | ||
if: ( failure() || cancelled() ) && github.repository_owner == 'TileDB-Inc' && github.event_name == 'schedule' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Open Issue | ||
uses: TileDB-Inc/github-actions/open-issue@main | ||
with: | ||
name: azure status check | ||
label: nightly-azure-status-failure | ||
assignee: johnkerl,jdblischak | ||
env: | ||
TZ: "America/New_York" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters