We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b779e4b commit 84c2407Copy full SHA for 84c2407
1 file changed
ci/cloudbuild/builds/cmake-oldest-deps.sh
@@ -35,6 +35,16 @@ readonly ENABLED_FEATURES
35
36
export VCPKG_OVERLAY_PORTS="ci/gha/builds/vcpkg-overlays"
37
38
+function exit_trap() {
39
+ local exit_status=$?
40
+ io::log_h2 "cleanup on EXIT with exit_status=${exit_status}"
41
+ if ((exit_status != 0)); then
42
+ cat /workspace/cmake-out/build/vcpkg-manifest-install.log
43
+ fi
44
+}
45
+
46
+trap 'exit_trap' INT TERM EXIT
47
48
io::log_h2 "Configuring"
49
vcpkg_root="$(vcpkg::root_dir)"
50
cmake -GNinja -S . -B cmake-out/build \
0 commit comments