Skip to content

Commit

Permalink
quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Oct 15, 2024
1 parent 6d6f920 commit 3d0c4de
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,10 @@ jobs:
# if: matrix.os != 'windows-2022'
shell: pwsh
run: |
Add-Content "$env:GITHUB_ENV" "hostSystemName=$("${{ matrix.os }}".split("-")[0])"
perl -p -e 's/<hostSystemName>/${hostSystemName}/g;' .CMakeUserPresets.json > CMakeUserPresets.json
cmake --workflow "--preset=ci-$("${{ matrix.os }}".split("-")[0])"
export hostSystemName=$("${{ matrix.os }}".split("-")[0])
uname || echo ${hostSystemName}
perl -p -e "s/<hostSystemName>/${hostSystemName}/g;" .CMakeUserPresets.json > CMakeUserPresets.json
cmake --workflow --preset=dev # XXX "--preset=ci-$("${{ matrix.os }}".split("-")[0])"
# - name: Configure on windows
# if: matrix.os == 'windows-2022'
Expand Down

0 comments on commit 3d0c4de

Please sign in to comment.