Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9cb07d9cef | |||
| 809d26349b | |||
| 63cc96d602 | |||
| 4db2abc990 | |||
| f7fa3bbd47 | |||
| 2a20398c87 |
@@ -2,6 +2,9 @@ name: Build
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|||||||
@@ -1,15 +1,12 @@
|
|||||||
name: Deploy
|
name: Deploy
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_run:
|
push:
|
||||||
workflows:
|
branches:
|
||||||
- Build
|
- master
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
||||||
runs-on: almalinux-8
|
runs-on: almalinux-8
|
||||||
container:
|
container:
|
||||||
image: git.query.consul/unkin/almalinux8-runnerdnd:latest
|
image: git.query.consul/unkin/almalinux8-runnerdnd:latest
|
||||||
@@ -19,11 +16,31 @@ jobs:
|
|||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Download Build Artifacts
|
- name: Download Artifacts
|
||||||
uses: actions/download-artifact@v3
|
run: |
|
||||||
with:
|
mkdir -p /workspace/unkin/terraform-nomad/plans
|
||||||
name: plans
|
export RUN_ID=$((GITHUB_RUN_NUMBER - 1))
|
||||||
path: /workspace/unkin/terraform-nomad/plans
|
export PLANS_URL="https://git.query.consul/${GITHUB_REPOSITORY}/actions/runs/${RUN_ID}/artifacts/plans"
|
||||||
|
export MAX_RETRIES=5
|
||||||
|
export RETRY_COUNT=0
|
||||||
|
echo "Attempting to download plans from ${PLANS_URL}"
|
||||||
|
while [ $RETRY_COUNT -lt $MAX_RETRIES ]; do
|
||||||
|
curl -L -o /workspace/plans.zip "${PLANS_URL}" && break || true
|
||||||
|
echo "Plans file not available yet. Retrying in 10 seconds... ($((RETRY_COUNT + 1))/$MAX_RETRIES)"
|
||||||
|
RETRY_COUNT=$((RETRY_COUNT + 1))
|
||||||
|
sleep 10
|
||||||
|
done
|
||||||
|
if [ ! -f /workspace/plans.zip ]; then
|
||||||
|
echo "Failed to download plans file after $MAX_RETRIES attempts."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Plans file downloaded. Extracting..."
|
||||||
|
unzip /workspace/plans.zip -d /workspace/unkin/terraform-nomad/plans
|
||||||
|
echo "Plans file extracted successfully."
|
||||||
|
|
||||||
|
- name: Show Plans
|
||||||
|
run: |
|
||||||
|
find /workspace -type f -name "*.plan"
|
||||||
|
|
||||||
- name: Install Packages
|
- name: Install Packages
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user