From 3940d5b902fc4243ac5cfd5de9f835c711db6fe2 Mon Sep 17 00:00:00 2001 From: Niels Dekker Date: Thu, 20 Jul 2023 10:20:26 +0200 Subject: [PATCH] COMP: Upgrade ITKRemoteModuleBuildTestPackageAction to 2023-07-04 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgraded ITKRemoteModuleBuildTestPackageAction to the latest revision from its main, from 2023-07-04. Aims to fix GitHub CI failures, especially from "cxx-build-workflow / build-test-cxx (windows-2022)". Including: https://github.com/InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/pull/65 https://github.com/InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/commit/edd0a4350396f533e9ec3755ed6c5af5ddfedb97 BUG: Add missing space before closing bracket in if statements https://github.com/InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/pull/64 https://github.com/InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/commit/1514c2c529d3319976f82e48a9292be0297ffe9d COMP: Do not change location when launching VS development shell Suggested by Dženan Zukić and Tom Birdsong. --- .github/workflows/build-test-package.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index addb256d..7d1ab099 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -4,11 +4,11 @@ on: [push,pull_request] jobs: cxx-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@85252b549b1e44aa7198fbea470f75732d092c8b + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@edd0a4350396f533e9ec3755ed6c5af5ddfedb97 python-build-workflow-dev: if: github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags') - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@85252b549b1e44aa7198fbea470f75732d092c8b + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@edd0a4350396f533e9ec3755ed6c5af5ddfedb97 with: python3-minor-versions: '["7","11"]' manylinux-platforms: '["_2_28-x64","2014-x64"]' @@ -17,7 +17,7 @@ jobs: python-build-workflow-main: if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@85252b549b1e44aa7198fbea470f75732d092c8b + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@edd0a4350396f533e9ec3755ed6c5af5ddfedb97 with: python3-minor-versions: '["7","8","9","10","11"]' manylinux-platforms: '["_2_28-x64","2014-x64"]'