aboutsummaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2023-03-12 12:25:22 -0700
committerJohn MacFarlane <[email protected]>2023-03-12 12:25:22 -0700
commit5033687724bad11cac7b22b8346bcaa635819725 (patch)
tree8b1cdec0ef31bf0d32f20edf7635cc19daf057c4 /linux
parentfcb8f070773200dedfa97384f6c6a8b6a5ad6128 (diff)
More cirrus tweaks.
Ensure that the binary is built again even if it exists in the cache.
Diffstat (limited to 'linux')
-rw-r--r--linux/make_artifacts.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/linux/make_artifacts.sh b/linux/make_artifacts.sh
index ff7650129..f795655a4 100644
--- a/linux/make_artifacts.sh
+++ b/linux/make_artifacts.sh
@@ -21,7 +21,7 @@ mkdir -p $ARTIFACTS
rm -f $ARTIFACTS/DONE
clean_up() {
- echo "All done!" > "$ARTIFACTS/DONE"
+ echo "Exiting with error..."
}
trap clean_up EXIT
@@ -29,14 +29,13 @@ echo "Copying and stripping pandoc binary"
cp "$ROOT/pandoc" "$ARTIFACTS/pandoc"
strip "$ARTIFACTS/pandoc"
-echo "Performing sanity checks on binary..."
-# Confirm that we have static builds
+echo "Checking that the binary is statically linked..."
file "$ARTIFACTS/pandoc" | grep "statically linked"
-# Confirm that it has +lua and +server support
+echo "Checking that the binary has +lua and +server support..."
"$ARTIFACTS/pandoc" --version | grep -q '+server +lua'
-# Confirm that it has data files baked in:
+echo "Checking that the binary has data files baked in..."
strings "$ARTIFACTS/pandoc" | grep -q '\$title\$'
make_deb() {
@@ -107,4 +106,5 @@ make_deb
echo "Making tarball..."
make_tarball
+echo "Finished!"
exit 0