test: plural up
tests
#1041
Workflow file for this run
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
name: E2E | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
env: | ||
GOPATH: /home/runner/go/ | ||
GOBIN: /home/runner/go/bin | ||
jobs: | ||
plural-up-gcp: | ||
name: plural up / GCP | ||
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 Venom | ||
run: | | ||
curl https://github.com/ovh/venom/releases/download/v1.1.0/venom.linux-amd64 -L -o /usr/local/bin/venom | ||
chmod +x /usr/local/bin/venom | ||
venom version | ||
- name: Setup Plural CLI | ||
run: | | ||
make install-cli | ||
plural version | ||
- name: Print Terraform version | ||
run: terraform --version | ||
- name: Print Google Cloud CLI version | ||
run: gcloud --version | ||
plural-up-azure: | ||
name: plural up / Azure | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Store test timestamp | ||
run: echo "TIMESTAMP=$(date +'%s')" >> $GITHUB_ENV | ||
- name: Test time | ||
env: | ||
ASD: ${{ TIMESTAMP }} | ||
Check failure on line 52 in .github/workflows/e2e.yaml GitHub Actions / E2EInvalid workflow file
|
||
run: echo ASD | ||
- 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 Venom | ||
run: | | ||
curl https://github.com/ovh/venom/releases/download/v1.1.0/venom.linux-amd64 -L -o /usr/local/bin/venom | ||
chmod +x /usr/local/bin/venom | ||
venom version | ||
- name: Setup Plural CLI | ||
run: | | ||
make install-cli | ||
plural version | ||
- name: Print Terraform version | ||
run: terraform --version | ||
- name: Print Azure CLI version | ||
run: az --version | ||
- name: Login to Azure | ||
uses: azure/login@v2 | ||
with: | ||
auth-type: IDENTITY | ||
client-id: ${{ secrets.E2E_AZURE_CLIENT_ID }} | ||
tenant-id: ${{ secrets.E2E_AZURE_TENANT_ID }} | ||
subscription-id: ${{ secrets.E2E_AZURE_SUBSCRIPTION_ID }} | ||
# - name: Run tests | ||
# env: | ||
# VENOM_VAR_provider: azure | ||
# VENOM_VAR_region: eastus | ||
# VENOM_VAR_azureTenantId: ${{ secrets.E2E_AZURE_TENANT_ID }} | ||
# VENOM_VAR_azureSubscriptionId: ${{ secrets.E2E_AZURE_SUBSCRIPTION_ID }} | ||
# VENOM_VAR_azureStorageAccount: e2e-123 # Use timestamp for uniqueness | ||
# VENOM_VAR_project: e2e-123 # Use timestamp for uniqueness | ||
# VENOM_VAR_directory: ${{ HOME }}/testout/azure # Check if it works | ||
# VENOM_VAR_gitRepo: [email protected]:pluralsh/plural-cli-e2e.git | ||
# VENOM_VAR_gitRepoPrivateKey: ${{ secrets.E2E_REPO_PRIVATE_KEY }} | ||
# VENOM_VAR_privateKeyPath: '' # Put data from the secret above in a file and reference it here | ||
# VENOM_VAR_branch: e2e-azure-123 # Use timestamp for uniqueness | ||
# VENOM_VAR_username: ${{ secrets.E2E_AZURE_SA_USERNAME }} | ||
# VENOM_VAR_email: ${{ secrets.E2E_AZURE_SA_EMAIL }} | ||
# VENOM_VAR_token: ${{ secrets.E2E_AZURE_SA_TOKEN }} | ||
# VENOM_VAR_pluralHome: ${{ HOME }}/.plural # Check if it works | ||
# PLURAL_LOGIN_AFFIRM_CURRENT_USER: true | ||
# PLURAL_UP_AFFIRM_DEPLOY: true | ||
# run: venom run -v --output-dir ${HOME}/testout --stop-on-failure test/plural |