Update github-provider to 5.45 #58
Workflow file for this run
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
--- | |
# ------------------------------------------------------------------------------------------------- | |
# Job Name | |
# ------------------------------------------------------------------------------------------------- | |
name: test | |
# ------------------------------------------------------------------------------------------------- | |
# When to run | |
# ------------------------------------------------------------------------------------------------- | |
on: | |
# Runs on Pull Requests | |
pull_request: | |
# ------------------------------------------------------------------------------------------------- | |
# What to run | |
# ------------------------------------------------------------------------------------------------- | |
jobs: | |
# ------------------------------------------------------------ | |
# Job-1 | |
# ------------------------------------------------------------ | |
job01: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set environment variables | |
run: | | |
# These env vars are required to use remote state and remote locking on AWS | |
# in order to prevent multiple commits/pr's to apply at the same time | |
echo "AWS_DEFAULT_REGION=eu-central-1" >> ${GITHUB_ENV} | |
echo "AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID_CI_TF_GITHUB }}" >> ${GITHUB_ENV} | |
echo "AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY_CI_TF_GITHUB }}" >> ${GITHUB_ENV} | |
- name: "Test 01" | |
run: | | |
retry() { | |
for n in $(seq ${RETRIES}); do | |
echo "[${n}/${RETRIES}] ${*}"; | |
if eval "${*}"; then | |
echo "[SUCC] ${n}/${RETRIES}"; | |
return 0; | |
fi; | |
sleep 2; | |
echo "[FAIL] ${n}/${RETRIES}"; | |
done; | |
return 1; | |
} | |
cd tests | |
retry make test-01 GITHUB_ORG=flaconi-ci-github-teams GITHUB_TOKEN=${{ secrets.GH_FL_CI_TEAMS_TOKEN }} | |
env: | |
RETRIES: 1 | |
# ------------------------------------------------------------ | |
# Job-2 | |
# ------------------------------------------------------------ | |
job02: | |
needs: [job01] | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set environment variables | |
run: | | |
# These env vars are required to use remote state and remote locking on AWS | |
# in order to prevent multiple commits/pr's to apply at the same time | |
echo "AWS_DEFAULT_REGION=eu-central-1" >> ${GITHUB_ENV} | |
echo "AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID_CI_TF_GITHUB }}" >> ${GITHUB_ENV} | |
echo "AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY_CI_TF_GITHUB }}" >> ${GITHUB_ENV} | |
- name: "Test 02" | |
run: | | |
retry() { | |
for n in $(seq ${RETRIES}); do | |
echo "[${n}/${RETRIES}] ${*}"; | |
if eval "${*}"; then | |
echo "[SUCC] ${n}/${RETRIES}"; | |
return 0; | |
fi; | |
sleep 2; | |
echo "[FAIL] ${n}/${RETRIES}"; | |
done; | |
return 1; | |
} | |
cd tests | |
retry make test-02 GITHUB_ORG=flaconi-ci-github-teams GITHUB_TOKEN=${{ secrets.GH_FL_CI_TEAMS_TOKEN }} | |
env: | |
RETRIES: 1 |