Skip to content

Commit 77315a4

Browse files
committed
[gametracer] Remove script checks per reviewer feedback
- remove codes from build_tarballs.jl per review by @imciner2 on PR JuliaPackaging#13218
1 parent 3d27290 commit 77315a4

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

G/gametracer/build_tarballs.jl

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,8 @@ sources = [
1010
]
1111

1212
script = raw"""
13-
set -euxo pipefail
14-
1513
cd "${WORKSPACE}/srcdir/gametracer"
1614
17-
# Sanity-check that the c_api entry-point exists at the expected location
18-
test -d c_api
19-
test -f c_api/CMakeLists.txt
2015
2116
cmake -S c_api -B build \
2217
-DCMAKE_TOOLCHAIN_FILE="${CMAKE_TARGET_TOOLCHAIN}" \
@@ -25,20 +20,6 @@ cmake -S c_api -B build \
2520
2621
cmake --build build --parallel "${nproc}"
2722
cmake --install build
28-
29-
# Verify the shared library was installed
30-
if [[ ! -f "${libdir}/libgametracer.${dlext}" ]]; then
31-
echo "ERROR: libgametracer.${dlext} not found under ${libdir}"
32-
find "${prefix}" -maxdepth 6 -name "libgametracer.*" || true
33-
exit 1
34-
fi
35-
36-
# Verify the license file was installed (Yggdrasil audit requirement)
37-
if [[ ! -f "${prefix}/share/licenses/gametracer/COPYING" ]]; then
38-
echo "ERROR: missing license file: ${prefix}/share/licenses/gametracer/COPYING"
39-
find "${prefix}/share" -maxdepth 7 -name "COPYING" -o -name "LICENSE*" || true
40-
exit 1
41-
fi
4223
"""
4324

4425
platforms = supported_platforms()

0 commit comments

Comments
 (0)