commit b2940b50161bf8af99cda0f0f277b40e12a1f9ef
parent b3887b6535ac948761ae031230cae7f5782d5616
Author: Robin Bron <robin.bron@yourhosting.nl>
Date: Tue, 3 Mar 2026 01:24:21 +0100
v1.3.3
Diffstat:
3 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
@@ -85,6 +85,7 @@ jobs:
apt-get install -yq build-essential
run: |
make -j udphole VERSION=${{ needs.version.outputs.version }}
+ strip --strip-all udphole
mv udphole ${{ matrix.bin }}
- if: '!matrix.cross'
@@ -92,6 +93,7 @@ jobs:
shell: bash
run: |
make -j udphole VERSION=${{ needs.version.outputs.version }}
+ strip --strip-all udphole
mv udphole ${{ matrix.bin }}
- name: Upload to release
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
@@ -63,6 +63,7 @@ jobs:
name: Build native
run: |
make -j udphole VERSION=${{ needs.version.outputs.version }}
+ strip --strip-all udphole
mv udphole ${{ matrix.bin }}
- if: matrix.cross
@@ -77,6 +78,7 @@ jobs:
apt-get install -yq build-essential
run: |
make -j udphole VERSION=${{ needs.version.outputs.version }}
+ strip --strip-all udphole
mv udphole ${{ matrix.bin }}
- name: Upload artifact
diff --git a/Makefile b/Makefile
@@ -7,7 +7,7 @@ SRC:=
# UNAME_SYSTEM=$(call lc,$(shell uname -s))
BIN?=udphole
-VERSION?=1.3.2
+VERSION?=1.3.3
CC:=gcc
CPP:=g++