Skip to content

Commit

Permalink
add jobs for all providers
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Nov 21, 2024
1 parent 2f40389 commit 0411c37
Showing 1 changed file with 49 additions and 3 deletions.
52 changes: 49 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ env:
GOPATH: /home/runner/go/
GOBIN: /home/runner/go/bin
jobs:
build:
name: Test `plural up`
plural-up-gcp:
name: Test `plural up` / GCP
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -35,4 +35,50 @@ jobs:
with:
version: ">= 363.0.0"
- name: Print Google Cloud SDK info
run: gcloud info
run: gcloud info
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 Terraform
uses: hashicorp/setup-terraform@v3
- name: Setup Plural CLI
run: make install-cli
- name: Print Plural CLI version
run: plural version
- name: Print AWS CLI version
run: aws --version
plural-up-azure:
name: Test `plural up` / Azure
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 Terraform
uses: hashicorp/setup-terraform@v3
- name: Setup Plural CLI
run: make install-cli
- name: Print Plural CLI version
run: plural version
- name: Set up Azure CLI
run: curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
- name: Print Azure CLI version
run: az --version

0 comments on commit 0411c37

Please sign in to comment.