Skip to content

Commit

Permalink
fix build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
andistorm committed Apr 16, 2024
1 parent a371a34 commit b6a52e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ci/build-kit/compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ cmake \
-DCMAKE_INSTALL_PREFIX="$EXT_MOUNT/dist" \
-DBUILD_TESTING=ON

ninja -j$(nproc) -C build
ninja -j$(nproc) -C "$EXT_MOUNT/build"
6 changes: 3 additions & 3 deletions .ci/build-kit/prepare_integration_tests.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/sh

# ninja -j$(nproc) -C build tests
ninja -j$(nproc) -C build install
ninja -j$(nproc) -C "$EXT_MOUNT/build" install

# install everest testing by cmake target to make sure using the version defined in dependencies.yaml
ninja -C build install_everest_testing
ninja -C "$EXT_MOUNT/build" install_everest_testing

rsync -a "$EXT_MOUNT/source/tests" ./

rm -rf build
rm -rf "$EXT_MOUNT/build"
2 changes: 1 addition & 1 deletion .ci/build-kit/run_unit_tests.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

ninja -j$(nproc) -C build test
ninja -j$(nproc) -C "$EXT_MOUNT/build" test

0 comments on commit b6a52e8

Please sign in to comment.