Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Split up in multiple jobs #633

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix build dir
  • Loading branch information
andistorm committed Apr 16, 2024
commit b6a52e82ce3d1e2b1c801a8ecd5ae84114645aae
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
Loading