From 679d552719095a9010d29dba980832c5185790a5 Mon Sep 17 00:00:00 2001 From: Oz Tiram Date: Tue, 23 Jul 2024 19:47:07 +0200 Subject: [PATCH] feature (ci): build static binary, build dpkg --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a754c9..7563b7d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,17 +8,20 @@ on: jobs: build: - runs-on: ubuntu-latest - steps: - uses: actions/checkout@v4 - name: install deps run: sudo make deb-install-deps - name: make mh run: make mh - - name: make test + - name: build static binary + - name: make mh-static OPTS=-lpthread run: make test + - name: build deb package + run: | + make debdeb-export-archive + make debbuild build-osx: runs-on: macos-latest steps: