Skip to content

Commit

Permalink
Hide linux build artifact
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
JoseDiazRohena committed Mar 26, 2023
1 parent d608371 commit a6357dd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/cmake_ctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand All @@ -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' }}
Expand Down

0 comments on commit a6357dd

Please sign in to comment.