use oidc (#118)
This commit is contained in:
Родитель
a35284b3d7
Коммит
e843f35aaa
|
@ -11,27 +11,22 @@ on:
|
|||
- '**/go.mod'
|
||||
|
||||
jobs:
|
||||
acc-tests:
|
||||
runs-on: [self-hosted, 1ES.Pool=terraform-azurerm-loadbalancer]
|
||||
environment:
|
||||
name: acctests
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: init
|
||||
- name: Checking for Fork
|
||||
shell: pwsh
|
||||
run: |
|
||||
docker run --rm -v $(pwd):/src -w /src mcr.microsoft.com/azterraform:latest make generate
|
||||
- name: e2e test
|
||||
run: |
|
||||
sh scripts/ci-e2e.sh
|
||||
- name: upload test version snapshots
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: TestRecord-${{ github.event.number }}
|
||||
retention-days: 60
|
||||
path: |
|
||||
examples/**/TestRecord.md.tmp
|
||||
- name: version-upgrade test
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
sh scripts/ci-version-upgrade.sh
|
||||
$isFork = "${{ github.event.pull_request.head.repo.fork }}"
|
||||
if($isFork -eq "true") {
|
||||
echo "### WARNING: This workflow is disabled for forked repositories. Please follow the [release branch process](https://azure.github.io/Azure-Verified-Modules/contributing/terraform/terraform-contribution-flow/#5-create-a-pull-request-to-the-upstream-repository) if end to end tests are required." >> $env:GITHUB_STEP_SUMMARY
|
||||
}
|
||||
|
||||
run-e2e-tests:
|
||||
if: github.event.pull_request.head.repo.fork == false
|
||||
uses: Azure/tfmod-scaffold/.github/workflows/tfvm_e2e.yaml@main
|
||||
name: end to end
|
||||
secrets: inherit
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
|
@ -1,30 +0,0 @@
|
|||
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-loadbalancer]
|
||||
environment:
|
||||
name: crontests
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: init
|
||||
run: |
|
||||
docker run --rm -v $(pwd):/src -w /src mcr.microsoft.com/azterraform:latest make generate
|
||||
- name: e2e test
|
||||
continue-on-error: true
|
||||
run: |
|
||||
sh scripts/ci-e2e.sh
|
||||
- name: Update
|
||||
run: |
|
||||
sh scripts/ci-update-test-record.sh
|
||||
- name: Commit & Push changes
|
||||
uses: actions-js/push@master
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
message: 'Update TestVersionSnapshot'
|
||||
branch: ${{ github.event.repository.default_branch }}
|
|
@ -1,9 +1,4 @@
|
|||
SHELL := /bin/bash
|
||||
|
||||
-include $(shell curl -sSL "https://raw.githubusercontent.com/Azure/tfmod-scaffold/main/scripts/install.sh" | bash -s > /dev/null ; echo tfmod-scaffold/GNUmakefile)
|
||||
|
||||
init:
|
||||
@sh "$(CURDIR)/scripts/init.sh"
|
||||
|
||||
cleanup:
|
||||
@sh "$(CURDIR)/scripts/cleanup.sh"
|
||||
$(shell curl -H 'Cache-Control: no-cache, no-store' -sSL "https://raw.githubusercontent.com/Azure/tfmod-scaffold/refs/heads/main/GNUmakefile" -o tfvmmakefile)
|
||||
-include tfvmmakefile
|
Загрузка…
Ссылка в новой задаче