commit 85a932de9ce6a1ae9fe771362254c9751d2134ec
parent 623e5ffdd13ab679c500fd1a1bac72746825011c
Author: finwo <finwo@pm.me>
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++