fix: serialize json format #68
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: Testing Object Storage | |
on: | |
push: | |
branches: | |
- "ci/test-automation" | |
jobs: | |
matrix-builder: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: set-matrix | |
run: | | |
REGIONS=$(yq eval '.regions.objectstorage[]' .github/data/region.yml | jq -R -s -c 'split("\n") | map(select(length > 0))') | |
echo "matrix=${REGIONS}" >> $GITHUB_OUTPUT | |
test-object-storage: | |
name: Test | |
needs: matrix-builder | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
region: ${{ fromJson(needs.matrix-builder.outputs.matrix) }} | |
steps: | |
- name: checkout branch | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' # Specify a Go version | |
cache: false | |
- name: Check Go Version | |
run: go version | |
- name: Check GOBIN | |
id: go-binary | |
run: echo "GOBIN=$HOME/go/bin" >> $GITHUB_OUTPUT | |
- name: Run go Install | |
run: go install . | |
- name: Write .terraformrc | |
run: | | |
cat << EOF > $HOME/.terraformrc | |
provider_installation { | |
dev_overrides { | |
"NaverCloudPlatform/ncloud" = "${{ steps.go-binary.outputs.GOBIN }}" | |
} | |
direct {} | |
} | |
EOF | |
- name: Write locals.tf | |
run: | | |
cat << EOF > locals.tf | |
locals { | |
access_key = "${{ secrets.NCLOUD_ACCESS_KEY }}" | |
secret_key = "${{ secrets.NCLOUD_SECRET_KEY }}" | |
region = "${{ matrix.region }}" | |
support_vpc = ${{ matrix.region == 'KR' || matrix.region == 'JPN' || matrix.region == 'SGN' }} | |
} | |
EOF | |
- name: Write provider.tf | |
run: ln -s .github/data/samples/provider.tf provider.tf | |
- name: Write main.tf | |
run: ln -s .github/data/samples/objectstorage.tf main.tf | |
- name: Write test.md | |
run: echo "hello world!" > test.md | |
- name: Set up Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: "1.9.4" | |
- name: Terraform Init | |
run: terraform init | |
- name: Terraform Plan | |
run: terraform plan | |
- name: Terraform Apply | |
id: apply_step | |
run: terraform apply -auto-approve | |
- name: Terraform Destroy | |
if: steps.apply_step.outcome == 'success' | |
run: terraform destroy -auto-approve |