Skip to content

Commit

Permalink
Add a temporary cron job with output values enabled (pulumi#1077)
Browse files Browse the repository at this point in the history
The output values feature is currently disabled by default. This duplicates the existing `providers` job with the feature enabled.

Once we enable the feature by default, we can remove this job here.
  • Loading branch information
justinvp committed Sep 17, 2021
1 parent 0700587 commit ea4475e
Showing 1 changed file with 114 additions and 0 deletions.
114 changes: 114 additions & 0 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,120 @@ jobs:
- ubuntu-latest
python-version:
- "3.7"
providers-output-values:
name: providers-output-values
env:
PULUMI_ENABLE_OUTPUT_VALUES: "1"
runs-on: ${{ matrix.platform }}
steps:
- name: Install DotNet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{matrix.dotnet-version}}
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{matrix.node-version}}
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{matrix.python-version}}
- name: Install Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
with:
go-version: ${{matrix.go-version}}
- name: Install Python Deps
run: |-
pip3 install virtualenv==20.0.23
pip3 install pipenv
- name: Install aws-iam-authenticator
run: |-
curl -o aws-iam-authenticator https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/aws-iam-authenticator
chmod +x ./aws-iam-authenticator
sudo mv aws-iam-authenticator /usr/local/bin
- name: Install Kubectl
run: |-
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv kubectl /usr/local/bin
- name: Install + Configure Helm
run: |-
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Configure GCP credentials
uses: google-github-actions/setup-gcloud@master
with:
project_id: ${{ env.GOOGLE_PROJECT }}
service_account_email: ${{ secrets.GCP_SA_EMAIL }}
service_account_key: ${{ secrets.GCP_SA_KEY }}
version: 285.0.0
- name: Login to Google Cloud Registry
run: gcloud --quiet auth configure-docker
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-region: ${{ env.AWS_REGION }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
role-duration-seconds: 3600
role-session-name: examples@githubActions
role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }}
- uses: actions/checkout@v2
- name: Checkout Scripts Repo
uses: actions/checkout@v2
with:
path: ci-scripts
repository: pulumi/scripts
- if: matrix.examples-test-matrix == 'no-latest-cli'
run: echo 'running combination of stable pulumi cli + dev providers'
- if: matrix.examples-test-matrix == 'no-latest-packages'
run: echo 'running combination of dev pulumi cli + stable providers'
- if: matrix.examples-test-matrix == 'default'
run: echo 'running combination of dev pulumi cli + dev providers'
- if: matrix.examples-test-matrix == 'no-latest-cli'
name: Install Latest Stable Pulumi CLI
uses: pulumi/[email protected]
- name: Running ci-scripts/run-at-head with ${{ matrix.examples-test-matrix }}
configuration
run: ./ci-scripts/ci/run-at-head --${{ matrix.examples-test-matrix }}
- if: matrix.examples-test-matrix == 'default' || matrix.examples-test-matrix == 'no-latest-packages'
run: echo "/home/runner/.pulumi/bin" >> $GITHUB_PATH
- run: echo "Currently Pulumi $(pulumi version) is installed"
- name: Install Testing Dependencies
run: make ensure
- name: Running ${{ matrix.clouds }}${{ matrix.languages }} Tests
run: make specific_test_set TestSet=${{ matrix.clouds }}${{ matrix.languages
}}
strategy:
fail-fast: false
matrix:
clouds:
- DigitalOcean
- Aws
- Azure
- Gcp
- EquinixMetal
- Cloud
dotnet-version:
- 3.1.301
examples-test-matrix:
- no-latest-cli
- no-latest-packages
- default
go-version:
- 1.16.x
languages:
- Cs
- Js
- Ts
- Py
- Fs
node-version:
- 13.x
platform:
- ubuntu-latest
python-version:
- "3.7"
python-unit-testing:
name: Running ${{ matrix.source-dir }} test
runs-on: ${{ matrix.platform }}
Expand Down

0 comments on commit ea4475e

Please sign in to comment.