-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c42698f
commit 7595187
Showing
1 changed file
with
9 additions
and
25 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ env: | |
GOBIN: /home/runner/go/bin | ||
jobs: | ||
plural-up-gcp: | ||
name: Test `plural up` / GCP | ||
name: plural up / GCP | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
|
@@ -32,30 +32,8 @@ jobs: | |
run: terraform --version | ||
- name: Print Google Cloud CLI version | ||
run: gcloud --version | ||
plural-up-aws: | ||
name: Test `plural up` / AWS | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Go | ||
uses: actions/[email protected] | ||
with: | ||
go-version-file: go.mod | ||
- name: Add GOBIN to PATH | ||
run: echo $GOBIN >> $GITHUB_PATH | ||
- name: Setup Plural CLI | ||
run: make install-cli | ||
- name: Print Plural CLI version | ||
run: plural version | ||
- name: Print Terraform version | ||
run: terraform --version | ||
- name: Print AWS CLI version | ||
run: aws --version | ||
plural-up-azure: | ||
name: Test `plural up` / Azure | ||
name: plural up / Azure | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
|
@@ -75,4 +53,10 @@ jobs: | |
- name: Print Terraform version | ||
run: terraform --version | ||
- name: Print Azure CLI version | ||
run: az --version | ||
run: az --version | ||
- name: Login to Azure | ||
uses: azure/login@v2 | ||
with: | ||
client-id: ${{ secrets.E2E_AZURE_CLIENT_ID }} | ||
tenant-id: ${{ secrets.E2E_AZURE_TENANT_ID }} | ||
subscription-id: ${{ secrets.E2E_AZURE_SUBSCRIPTION_ID }} |