Skip to content

Commit 1ded9c8

Browse files
committed
chore(ci/cd): add some more echos
1 parent b2277e2 commit 1ded9c8

File tree

7 files changed

+16
-6
lines changed

7 files changed

+16
-6
lines changed

build/build.zip

15.9 KB
Binary file not shown.

build/create-deb.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/usr/bin/env bash
2-
# 2025052801
2+
# 2025053001
33

44
set -e -o pipefail -u -x
55

6+
echo "✅ Create deb"
7+
68
# Debuild wants a specific tarball name
79
mv $LFMP_DIR_SOURCES/v$LFMP_VERSION.tar.gz $LFMP_DIR_SOURCES/linuxfabrik-monitoring-plugins_$LFMP_VERSION.orig.tar.gz
810

build/create-package.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/usr/bin/env bash
2-
# 2025052801
2+
# 2025053001
33

44
set -e -o pipefail -u -x
55

6+
echo "✅ Create package for $LFMP_TARGET_DISTRO"
67
case "$LFMP_TARGET_DISTRO" in
78
debian11 | debian12 | ubuntu2204 | ubuntu2404)
89
export LFMP_PYTHON=python3

build/create-rpm.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/usr/bin/env bash
2-
# 2025052801
2+
# 2025053001
33

44
set -e -o pipefail -u -x
55

6+
echo "✅ Create rpm"
67
rpmdev-setuptree
78

89
cp $LFMP_DIR_SOURCES/* ~/rpmbuild/SOURCES/

build/create-src-tarball.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/usr/bin/env bash
2-
# 2025051601
2+
# 2025053001
33

44
set -e -o pipefail -u -x
55

6+
echo "✅ Create src tarball"
7+
68
mkdir --parent $LFMP_DIR_SOURCES
79

810
tar --create \

build/create-vendor-tarball.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/usr/bin/env bash
2-
# 2025052801
2+
# 2025053001
33

44
set -e -o pipefail -u -x
55

6+
echo "✅ Create vendor tarball"
7+
68
mkdir --parent $LFMP_DIR_REPOS/vendor
79

810
$LFMP_PYTHON -m pip download \

build/create-wxs.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/usr/bin/env bash
2-
# 2025022303
2+
# 2025053001
33

44
set -e -x
55

6+
echo "✅ Create wxs"
7+
68
cat > "$LFMP_DIR_PACKAGED/in/lfmp.wxs" << EOF
79
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
810
<Package

0 commit comments

Comments
 (0)