Skip to content

test

test #44

Workflow file for this run

name: E2E Test Check
on:
pull_request:
branches:
- master
- main
types: [ 'opened', 'synchronize' ]
paths:
- '.github/**'
- '.github/workflows/**'
- '**/*.tf'
jobs:
terraform-fmt:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: terrafmt-check
run: |
if [ ! -f /usr/local/bin/terraform ]; then
wget -q https://releases.hashicorp.com/terraform/1.6.0/terraform_1.6.0_linux_amd64.zip
unzip terraform_1.6.0_linux_amd64.zip -d /usr/local/bin/
fi
error=false
echo "===> Terraform fmt -diff checking"
terraform fmt -diff -recursive -check
if [[ $? -ne 0 ]]; then
echo -e "\033[31m[ERROR]\033[0m: Some codes has not been formatted, and please running terraform fmt --recursive command before pushing."
exit 1
fi
terraform-validate:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v34
with:
dir_names: "true"
separator: ","
files: '**/*.tf'
dir_names_max_depth: 2
- name: pr-check
run: |
CHANGED_FOLDERS="${{ steps.changed-files.outputs.all_changed_files }}"
echo ${CHANGED_FOLDERS}
# if [ ! -f /usr/local/bin/terraform ]; then
# wget -q https://releases.hashicorp.com/terraform/1.6.0/terraform_1.6.0_linux_amd64.zip
# unzip terraform_1.6.0_linux_amd64.zip -d /usr/local/bin/
# fi
# CHANGED_FOLDERS="${{ steps.changed-files.outputs.all_changed_files }}"
# if [ -z "${{ github.event.number }}" ]; then
# CHANGED_FOLDERS=$(find ./quickstarts -maxdepth 1 -mindepth 1 -type d | tr '\n' ',')
# fi
# bash scripts/terraform-validate.sh ${CHANGED_FOLDERS}
e2e-check:
# if: github.event.review.state == 'approved' || github.event.review.body == 'approved'
needs: [terraform-fmt, terraform-validate]
runs-on: ubuntu-latest
name: 'e2e check'
steps:
- name: checkout
uses: actions/checkout@v3
- name: set id
id: set-job-id
uses: ayachensiyuan/get-action-job-id@v1.6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
job-name: 'e2e check'
- name: Get pull request info
run: |
echo "repo name is" ${{github.event.pull_request.head.repo.full_name}}
echo "branch is" ${{github.event.pull_request.head.ref}}
echo "The current job id is ${{ steps.set-job-id.outputs.jobId }}"
- name: e2e test
run: |
objectPath="github-action/${{github.repository}}/e2e/Action-${{github.run_number}}-${{github.run_id}}-${{ steps.set-job-id.outputs.jobId }}"
go run scripts/curl_fc_trigger.go ${{github.event.pull_request.head.ref}} ${{github.event.pull_request.head.repo.full_name}} ${objectPath}
go run scripts/e2e_check.go ${objectPath}