We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d41dfe9 commit 08a1e27Copy full SHA for 08a1e27
.github/workflows/root-ci.yml
@@ -573,6 +573,18 @@ jobs:
573
run: |
574
ccache -s || true
575
576
+ - name: Install
577
+ run: "cmake --install /github/home/ROOT-CI/build/ --prefix /github/home/ROOT-CI/install"
578
+
579
+ - name: Post-install build
580
+ run: |
581
+ cmake -S test/PostInstall/ -B /github/home/ROOT-CI/PostInstall -DCMAKE_PREFIX_PATH=/github/home/ROOT-CI/install;
582
+ cmake --build /github/home/ROOT-CI/PostInstall;
583
584
+ - name: Post-install test
585
+ working-directory: /github/home/ROOT-CI/PostInstall
586
+ run: ctest -j $(nproc)
587
588
event_file:
589
# For any event that is not a PR, the CI will always run. In PRs, the CI
590
# can be skipped if the tag [skip-ci] or [skip ci] is written in the title.
0 commit comments