Skip to content

Commit

Permalink
add system libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mdavid-m committed Jun 26, 2024
1 parent 8949f10 commit a675817
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build-windows-executable-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build executable for Windows

on:
push:
branches: [ "main", "TaggerViewerDeploy"]
branches: [ "main", "TaggerViewerDeploy", "debug"]
pull_request:
branches: [ "main", "TaggerViewerDeploy"]

Expand Down Expand Up @@ -136,6 +136,14 @@ jobs:
echo $thirdpartytool >> $GITHUB_PATH
done
- name: Configure CMake
run: |
cmake -B ${{ github.workspace }}/OpenMS/bld/ -S ${{ github.workspace }}/OpenMS \
-DCMAKE_INSTALL_OPENMP_LIBRARIES=TRUE \
-DCMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION='bin' \
-DCMAKE_BUILD_TYPE=Release
shell: bash

- name: Build Windows
shell: bash
run: |
Expand Down Expand Up @@ -165,6 +173,11 @@ jobs:
CCACHE_COMPRESSLEVEL: 12
CCACHE_MAXSIZE: 400M

- name: Install system libraries
run: |
cmake --install ${{ github.workspace }}/OpenMS/bld/ --component SystemLibraries
shell: bash

#- name: Test Windows
# shell: bash
# run: $LAUNCHER ctest --output-on-failure -V -S $GITHUB_WORKSPACE/OpenMS/tools/ci/citest.cmake
Expand Down

0 comments on commit a675817

Please sign in to comment.