From dd9f5ee571d19f8ce470e5ee371f3d1ba39a6b85 Mon Sep 17 00:00:00 2001 From: Julien Date: Tue, 19 Nov 2024 10:19:19 +0100 Subject: [PATCH] Skip dotnet 6.0 tests in release script (#329) Pass through the language version, so we can skip the donet template tests when running on dotnet 6.0. Our templates have been updated to use 8.0 Follow up to https://github.com/pulumi/pulumi-docker-containers/pull/320 which updated the PR workflow, but not the release workflow. --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 41aa802e..67266006 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -519,6 +519,7 @@ jobs: docker run \ -e RUN_CONTAINER_TESTS=true \ -e IMAGE_VARIANT=pulumi-debian-${{ matrix.sdk }} \ + -e LANGUAGE_VERSION=${{ matrix.language_version }} \ -e SDKS_TO_TEST=${SDKS_TO_TEST} \ -e PULUMI_ACCESS_TOKEN=${PULUMI_ACCESS_TOKEN} \ -e PULUMI_ORG=${PULUMI_ORG} \ @@ -729,6 +730,7 @@ jobs: docker run \ -e RUN_CONTAINER_TESTS=true \ -e IMAGE_VARIANT=pulumi-ubi-${{ matrix.sdk }} \ + -e LANGUAGE_VERSION=${{ matrix.language_version }} \ -e SDKS_TO_TEST=${SDKS_TO_TEST} \ -e PULUMI_ACCESS_TOKEN=${PULUMI_ACCESS_TOKEN} \ -e PULUMI_ORG=${PULUMI_ORG} \