Skip to content

Commit

Permalink
move to normal env var
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mdavid-m committed Jun 26, 2024
1 parent dcd3523 commit 5449bd4
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/build-windows-executable-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,6 @@ jobs:
do
echo $thirdpartytool >> $GITHUB_PATH
done
- name: Configure CMake
run: |
mkdir $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
shell: bash
- name: Build Windows
shell: bash
Expand Down Expand Up @@ -172,10 +163,11 @@ jobs:
CCACHE_COMPRESS: true
CCACHE_COMPRESSLEVEL: 12
CCACHE_MAXSIZE: 400M
INSTALL_SYSTEM_RUNTIME_DESTINATION: "${{ github.workspace }}/OpenMS/bld/bin"

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

#- name: Test Windows
Expand Down

0 comments on commit 5449bd4

Please sign in to comment.