Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Feb 9, 2024
1 parent 2624fd0 commit afe73fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
- name: Configure, Build, and Install Dependencies
run: |
cd dependencies
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/dependencies/installs
cmake -S . -B build -DCMAKE_INSTALL_PREFIX="$GITHUB_WORKSPACE/dependencies/installs"
cmake --build build -j$(nproc)
- name: Configure, and Build flatmemory
run: |
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -S . -B build -DCMAKE_PREFIX_PATH=$GITHUB_WORKSPACE/dependencies/installs
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -S . -B build -DCMAKE_PREFIX_PATH="$GITHUB_WORKSPACE/dependencies/installs"s
cmake --build build -j$(nproc)
- name: Test
Expand Down

0 comments on commit afe73fb

Please sign in to comment.