FIX: SQL command update for get_completed_batches_ordered_by_complete… #255
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
name: prod-deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
invoke-prod-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: deploy to GCP | |
continue-on-error: true | |
run: | | |
DEPLOY_BATCH_URL_GCP=$(curl --fail --silent --show-error -X POST \ | |
-H "Authorization: Bearer ${{ secrets.CI_TOKEN }}" \ | |
-H "Content-Type:application/json" \ | |
-d '{"steps": ["deploy_auth", "deploy_batch", "deploy_ci", "deploy_hailgenetics_image", "deploy_wheel", "upload_query_jar"], "sha": "${{ github.sha }}"}' \ | |
https://ci.hail.populationgenomics.org.au/api/v1alpha/prod_deploy || echo "failed") | |
echo DEPLOY_BATCH_URL_GCP="$DEPLOY_BATCH_URL_GCP" >> $GITHUB_ENV | |
- name: deploy to Azure | |
continue-on-error: true | |
run: | | |
DEPLOY_BATCH_URL_AZURE=$(curl --fail --silent --show-error -X POST \ | |
-H "Authorization: Bearer ${{ secrets.CI_TOKEN_AZURE }}" \ | |
-H "Content-Type:application/json" \ | |
-d '{"steps": ["deploy_auth", "deploy_batch", "deploy_ci", "upload_query_jar"], "sha": "${{ github.sha }}"}' \ | |
https://ci.azhail.populationgenomics.org.au/api/v1alpha/prod_deploy || echo "failed") | |
echo DEPLOY_BATCH_URL_AZURE="$DEPLOY_BATCH_URL_AZURE" >> $GITHUB_ENV | |
- name: post to Slack | |
run: | | |
SLACK_MSG="Deploying Hail Batch:\n*GCP:* $DEPLOY_BATCH_URL_GCP\n*Azure:* $DEPLOY_BATCH_URL_AZURE" | |
curl --fail --silent --show-error -X POST \ | |
-H "Authorization: Bearer ${{ secrets.SLACK_BOT_TOKEN }}" \ | |
-H "Content-type: application/json" \ | |
-d "{\"channel\": \"production-announcements\", \"text\": \"$SLACK_MSG\"}" \ | |
https://slack.com/api/chat.postMessage | |
- name: check if any deploy failed | |
run: | | |
if [ "$DEPLOY_BATCH_URL_GCP" == "failed" ] || [ "$DEPLOY_BATCH_URL_AZURE" == "failed" ]; then | |
exit 1 | |
fi |