From d7061de3c45af7043b6bce1f2511fd1e77b917a7 Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Sun, 27 Oct 2024 09:41:36 -0400 Subject: [PATCH] I think this should do it --- .github/workflows/feature.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/feature.yml b/.github/workflows/feature.yml index 1f9246f..c142b25 100644 --- a/.github/workflows/feature.yml +++ b/.github/workflows/feature.yml @@ -16,12 +16,14 @@ jobs: name: linux dir_build: ./build file_name: clap-info + run_test: true - os: macos-latest name: mac-universal dir_build: ./build file_name: clap-info cmake_args: -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" + run_test: true - os: windows-latest name: win-x64 @@ -29,6 +31,7 @@ jobs: file_name: clap-info file_ext: .exe cmake_args: -G"Visual Studio 17 2022" -A x64 + run_test: true - os: windows-latest name: win-arm64ec @@ -36,6 +39,7 @@ jobs: file_name: clap-info file_ext: .exe cmake_args: -G"Visual Studio 17 2022" -A arm64ec -DCMAKE_SYSTEM_VERSION=10 + run_test: false steps: @@ -57,6 +61,7 @@ jobs: run: ls "${{ matrix.dir_build }}" - name: Test binary + if: ${{ matrix.run_test }} run: ${{ matrix.dir_build }}/${{ matrix.file_name }}${{ matrix.file_ext }} -h - name: Compress binary