We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7455690 commit bd53cfcCopy full SHA for bd53cfc
.github/workflows/z-test-pipeline.yml
@@ -47,6 +47,7 @@ jobs:
47
-DBoost_USE_STATIC_LIBS=ON \
48
-DCMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY=OFF \
49
-DCMAKE_FIND_PACKAGE_PREFER_CONFIG=ON \
50
+ -DCMAKE_EXE_LINKER_FLAGS="-static-libstdc++ -static-libgcc" \
51
-DBUILD_DROPBEAR=0 \
52
-DENABLE_UNIT_TESTS=0 \
53
-DBUILD_SHARED_LIBS=OFF \
@@ -56,6 +57,12 @@ jobs:
56
57
'
58
working-directory: ${{ env.TMP_DIR }}/sarus-hooks
59
60
+ - name: Verify hook runtime dependencies
61
+ run: |
62
+ set -euo pipefail
63
+ echo "ldd for ldcache_hook:"
64
+ ldd "$TMP_DIR/podman-hooks/bin/ldcache_hook" | tee "$TMP_DIR/ldd_ldcache_hook.txt"
65
+
66
- name: Install Bats locally
67
run: |
68
git clone --depth 1 https://github.com/bats-core/bats-core.git "$TMP_DIR/bats-core"
0 commit comments