Skip to content

Commit

Permalink
Skip updates, vm-azure-yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
cnunciato committed Jan 12, 2023
1 parent 3b14e27 commit 0485426
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
GOOGLE_PROJECT: pulumi-ci-gcp-provider
GOOGLE_PROJECT_NUMBER: 895284651812
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }}
SKIPPED_TESTS: "alicloud,digitalocean,kubernetes,openstack,equinix-metal,civo,aiven,auth0,github,oci,java-jbang,java-gradle,azuredevops"
SKIPPED_TESTS: "alicloud,digitalocean,kubernetes,openstack,equinix-metal,civo,aiven,auth0,github,oci,java-jbang,java-gradle,azuredevops,container,vm-azure-yaml"
PULUMI_API: https://api.pulumi-staging.io
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
PULUMI_VERSION: ${{ github.event.client_payload.ref }}
Expand Down Expand Up @@ -125,14 +125,11 @@ jobs:
env:
PULUMI_PYTHON_CMD: python
TESTPARALLELISM: 3
SKIPPED_TESTS: "alicloud,digitalocean,kubernetes,openstack,equinix-metal,civo,aiven,auth0,github,oci,java-jbang,java-gradle,azuredevops,container"
- if: contains(matrix.platform, 'macos')
name: Running macOS tests
run: |
set -euo pipefail
cd tests && go test -v -json -count=1 -cover -timeout 6h -parallel ${{ env.TESTPARALLELISM }} . 2>&1 | gotestfmt
env:
SKIPPED_TESTS: "alicloud,digitalocean,kubernetes,openstack,equinix-metal,civo,aiven,auth0,github,oci,java-jbang,java-gradle,azuredevops,container"
- if: contains(matrix.platform, 'ubuntu')
name: Running Linux tests
run: |
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/run-templates-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
GOOGLE_PROJECT: pulumi-ci-gcp-provider
GOOGLE_PROJECT_NUMBER: 895284651812
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }}
SKIPPED_TESTS: "alicloud,digitalocean,kubernetes,openstack,equinix-metal,civo,aiven,auth0,github,oci,java-jbang,java-gradle,azuredevops"
SKIPPED_TESTS: "alicloud,digitalocean,kubernetes,openstack,equinix-metal,civo,aiven,auth0,github,oci,java-jbang,java-gradle,azuredevops,container,vm-azure-yaml,kubernetes-azure-yaml"
PULUMI_API: https://api.pulumi-staging.io
ARM_CLIENT_ID: ${{ secrets.ARM_CLIENT_ID }}
ARM_CLIENT_SECRET: ${{ secrets.ARM_CLIENT_SECRET }}
Expand Down Expand Up @@ -130,14 +130,11 @@ jobs:
env:
PULUMI_PYTHON_CMD: python
TESTPARALLELISM: 3
SKIPPED_TESTS: "alicloud,digitalocean,kubernetes,openstack,equinix-metal,civo,aiven,auth0,github,oci,java-jbang,java-gradle,azuredevops,container"
- if: contains(matrix.platform, 'macOS')
name: Running macOS tests
run: |
set -euo pipefail
cd tests && go test -v -json -count=1 -cover -timeout 6h -parallel ${{ env.TESTPARALLELISM }} . 2>&1 | gotestfmt
env:
SKIPPED_TESTS: "alicloud,digitalocean,kubernetes,openstack,equinix-metal,civo,aiven,auth0,github,oci,java-jbang,java-gradle,azuredevops,container"
- if: contains(matrix.platform, 'ubuntu')
name: Running Linux tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion equinix-metal-go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ module ${PROJECT}
go 1.17

require (
github.com/pulumi/pulumi-equinix-metal/sdk/v2 v3.2.1
github.com/pulumi/pulumi-equinix-metal/sdk/v3 v3.2.1
github.com/pulumi/pulumi/sdk/v3 v3.51.0
)
3 changes: 1 addition & 2 deletions github-go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module ${PROJECT}
go 1.17

require (
github.com/pulumi/pulumi-github/sdk/v4 v5.1.0
github.com/pulumi/pulumi-github/sdk/v5 v5.1.0
github.com/pulumi/pulumi/sdk/v3 v3.51.0
)

4 changes: 4 additions & 0 deletions tests/template_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ func TestTemplates(t *testing.T) {
UseAutomaticVirtualEnv: true,
PrepareProject: testutils.PrepareProject(t, e),
RequireService: true,

// Skip updates to allow tests to complete more reliably.
// See https://github.com/pulumi/devrel-team/issues/464 for details.
SkipUpdate: true,
})
})
}
Expand Down

0 comments on commit 0485426

Please sign in to comment.