From a6357dda48913eabc8354cec93f975b6003cbff0 Mon Sep 17 00:00:00 2001 From: Jose Diaz Rohena Date: Sun, 26 Mar 2023 19:41:02 +0200 Subject: [PATCH] Hide linux build artifact Linux is only enabled right now to make sure that we don't merge in changes that break it building. It still hangs at run time, so let's not make the build artifact available. --- .github/workflows/cmake_ctest.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cmake_ctest.yml b/.github/workflows/cmake_ctest.yml index 1973d3e1..be4f9162 100644 --- a/.github/workflows/cmake_ctest.yml +++ b/.github/workflows/cmake_ctest.yml @@ -193,10 +193,10 @@ jobs: # default to user login keychain security list-keychains -d user -s login.keychain - - name: Zip - if: ${{ matrix.name == 'Linux' }} - working-directory: ${{ env.ARTIFACTS_PATH }} - run: 7z a -tzip ${{ env.OUTPUT_FILENAME }}.zip . + #- name: Zip + # if: ${{ matrix.name == 'Linux' }} + # working-directory: ${{ env.ARTIFACTS_PATH }} + # run: 7z a -tzip ${{ env.OUTPUT_FILENAME }}.zip . - name: Generate Installer (Windows) # and Sign with EV cert on Azure (Windows) if: ${{ matrix.name == 'Windows' }} @@ -216,12 +216,12 @@ jobs: name: ${{ env.OUTPUT_FILENAME }}.exe path: '${{ env.ARTIFACTS_PATH }}/${{ env.OUTPUT_FILENAME }}.exe' - - name: Upload Zip (Linux) - if: ${{ matrix.name == 'Linux' }} - uses: actions/upload-artifact@v3 - with: - name: ${{ env.OUTPUT_FILENAME }}.zip - path: '${{ env.ARTIFACTS_PATH }}/${{ env.OUTPUT_FILENAME }}.zip' + #- name: Upload Zip (Linux) + # if: ${{ matrix.name == 'Linux' }} + # uses: actions/upload-artifact@v3 + # with: + # name: ${{ env.OUTPUT_FILENAME }}.zip + # path: '${{ env.ARTIFACTS_PATH }}/${{ env.OUTPUT_FILENAME }}.zip' - name: Upload DMG (MacOS) if: ${{ matrix.name == 'macOS' }}