add ci (#140)
This commit is contained in:
35
.github/workflows/weekly-e2e.yaml
vendored
Normal file
35
.github/workflows/weekly-e2e.yaml
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
name: Weekly E2E Test Check
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 0 * * 0'
|
||||
|
||||
jobs:
|
||||
full-e2e-check:
|
||||
runs-on: [self-hosted, 1ES.Pool=terraform-azurerm-doc]
|
||||
timeout-minutes: 1440
|
||||
environment:
|
||||
name: crontests
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: test all examples
|
||||
continue-on-error: true
|
||||
timeout-minutes: 1440
|
||||
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')
|
||||
docker run --rm -v $(pwd):/src -w /src/test -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_TENANT_ID -e ARM_USE_MSI=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform sh -c "go mod tidy && go test -timeout=1440m -v ./e2e"
|
||||
- name: Update
|
||||
run: |
|
||||
docker run --rm -v $(pwd):/src -w /src mcr.microsoft.com/azterraform sh scripts/update-test-record.sh
|
||||
cd .git
|
||||
sudo chmod -R a+rwX .
|
||||
sudo find . -type d -exec chmod g+s '{}' +
|
||||
- name: Commit & Push changes
|
||||
uses: actions-js/push@master
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
message: 'Update TestRecord'
|
||||
branch: ${{ env.default_branch }}
|
Reference in New Issue
Block a user