Skip to content

Commit

Permalink
add preproccessing step
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mdavid-m committed Jun 26, 2024
1 parent 5449bd4 commit 8c232a5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-windows-executable-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,16 @@ jobs:
do
echo $thirdpartytool >> $GITHUB_PATH
done
- name: Configure CMake
run: |
mkdir -p $GITHUB_WORKSPACE/OpenMS/bld/
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
cmake --build $GITHUB_WORKSPACE/OpenMS/bld/ --config Release
shell: bash

- name: Build Windows
shell: bash
Expand Down Expand Up @@ -163,7 +173,6 @@ jobs:
CCACHE_COMPRESS: true
CCACHE_COMPRESSLEVEL: 12
CCACHE_MAXSIZE: 400M
INSTALL_SYSTEM_RUNTIME_DESTINATION: "${{ github.workspace }}/OpenMS/bld/bin"

- name: Install system libraries
run: |
Expand Down

0 comments on commit 8c232a5

Please sign in to comment.