add ci (#140)
This commit is contained in:
37
.github/workflows/e2e.yaml
vendored
Normal file
37
.github/workflows/e2e.yaml
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
name: E2E Test Check
|
||||
on:
|
||||
pull_request:
|
||||
types: ['opened', 'synchronize']
|
||||
paths:
|
||||
- '.github/**'
|
||||
- '.github/workflows/**'
|
||||
- 'quickstart/**'
|
||||
|
||||
jobs:
|
||||
e2e-check:
|
||||
runs-on: [self-hosted, 1ES.Pool=terraform-azurerm-doc]
|
||||
environment:
|
||||
name: acctests
|
||||
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: "quickstart/*"
|
||||
- name: test pr
|
||||
run: |
|
||||
az login --identity --username $MSI_ID > /dev/null
|
||||
export ARM_SUBSCRIPTION_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .id')
|
||||
export ARM_TENANT_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .tenantId')
|
||||
export CHANGED_FOLDERS="${{ steps.changed-files.outputs.all_changed_files }}"
|
||||
docker run --rm -v $(pwd):/src -w /src/test --network=host -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_TENANT_ID -e ARM_USE_MSI=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform:latest sh -c "go mod tidy && go test -timeout=360m -v ./e2e"
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: TestRecord-${{ github.event.number }}
|
||||
retention-days: 60
|
||||
path: |
|
||||
quickstart/**/TestRecord.md.tmp
|
Reference in New Issue
Block a user