-
Notifications
You must be signed in to change notification settings - Fork 23
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
Showing
3 changed files
with
43 additions
and
33 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
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 |
---|---|---|
|
@@ -31,12 +31,12 @@ env: | |
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} | ||
# The organization in the Pulumi SaaS service against which the integration | ||
# tests will run: | ||
PULUMI_ORG: "pulumi-test" | ||
PULUMI_ORG: "v-julien-pulumi-corp" | ||
# We parameterize the Docker Hub username to allow forks to easily test | ||
# changes on a separate repo without having to change the username in multiple | ||
# places: | ||
DOCKER_USERNAME: pulumibot | ||
DOCKER_ORG: pulumi | ||
DOCKER_USERNAME: jpoissonnier | ||
DOCKER_ORG: jpoissonnier | ||
PULUMI_VERSION: ${{ github.event.inputs.pulumi_version || github.event.client_payload.ref }} | ||
# Do not depend on C library for the tests. | ||
CGO_ENABLED: "0" | ||
|
@@ -50,6 +50,7 @@ env: | |
jobs: | ||
kitchen-sink: | ||
name: All SDKs image | ||
if: false | ||
strategy: | ||
matrix: | ||
go-version: [1.21.x] | ||
|
@@ -94,9 +95,9 @@ jobs: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ env.AWS_REGION }} | ||
role-duration-seconds: 14400 # 4 hours | ||
role-session-name: pulumi-docker-containers@githubActions | ||
role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }} | ||
# role-duration-seconds: 14400 # 4 hours | ||
# role-session-name: pulumi-docker-containers@githubActions | ||
# role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }} | ||
- name: Run Pulumi Template Tests | ||
run: | | ||
docker run \ | ||
|
@@ -142,6 +143,7 @@ jobs: | |
|
||
provider-build-environment: | ||
name: Provider Build Environment image | ||
if: false | ||
strategy: | ||
matrix: | ||
go-version: [1.21.1] | ||
|
@@ -186,9 +188,9 @@ jobs: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ env.AWS_REGION }} | ||
role-duration-seconds: 14400 # 4 hours | ||
role-session-name: pulumi-docker-containers@githubActions | ||
role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }} | ||
# role-duration-seconds: 14400 # 4 hours | ||
# role-session-name: pulumi-docker-containers@githubActions | ||
# role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }} | ||
- name: Run Pulumi Template Tests | ||
run: | | ||
docker run \ | ||
|
@@ -215,6 +217,7 @@ jobs: | |
|
||
base: | ||
name: Base image | ||
if: false | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
|
@@ -247,6 +250,7 @@ jobs: | |
run: | | ||
docker push ${{ env.DOCKER_ORG }}/pulumi-base:${{ env.PULUMI_VERSION }}-${{ matrix.os}}-${{ matrix.arch }} | ||
base-manifests: | ||
if: false | ||
name: Base image manifests | ||
needs: ["base"] | ||
runs-on: ubuntu-latest | ||
|
@@ -293,7 +297,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
sdk: ["nodejs", "python", "dotnet", "go", "java"] | ||
sdk: ["nodejs"] #, "python", "dotnet", "go", "java"] | ||
arch: ["amd64", "arm64"] | ||
steps: | ||
- uses: actions/checkout@master | ||
|
@@ -343,9 +347,9 @@ jobs: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ env.AWS_REGION }} | ||
role-duration-seconds: 14400 # 4 hours | ||
role-session-name: pulumi-docker-containers@githubActions | ||
role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }} | ||
# role-duration-seconds: 14400 # 4 hours | ||
# role-session-name: pulumi-docker-containers@githubActions | ||
# role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }} | ||
- name: Run Pulumi Template Tests | ||
run: | | ||
docker run \ | ||
|
@@ -376,7 +380,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
sdk: ["nodejs", "python", "dotnet", "go", "java"] | ||
sdk: ["nodejs"] #, "python", "dotnet", "go", "java"] | ||
steps: | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v1 | ||
|
@@ -410,6 +414,7 @@ jobs: | |
ubi-sdk: | ||
name: UBI SDK images | ||
if: false | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
|
@@ -501,7 +506,8 @@ jobs: | |
# accept arbitrary parameters, as we would need to persist the tag_latest | ||
# option from a workflow_dispatch in this workflow to each of the sync | ||
# workflows. | ||
if: ${{ github.event.inputs.force_release || github.event_name == 'repository_dispatch' }} | ||
# if: ${{ github.event.inputs.force_release || github.event_name == 'repository_dispatch' }} | ||
if: false | ||
steps: | ||
- name: Install Pulumictl | ||
uses: jaxxstorm/[email protected] | ||
|
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