From 2456c64a4002f504669d6710d03937c681c8bbb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Garc=C3=ADa=20Amor?= Date: Fri, 4 Oct 2024 11:09:20 +0200 Subject: [PATCH 1/3] Adds Test Build GitHub action --- .github/workflows/multi-arch-test-build.yml | 41 +++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/multi-arch-test-build.yml diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml new file mode 100644 index 0000000..a1a8d14 --- /dev/null +++ b/.github/workflows/multi-arch-test-build.yml @@ -0,0 +1,41 @@ +name: Test Build + +on: [push, pull_request] + +jobs: + build: + name: ${{ matrix.arch }} build + runs-on: ubuntu-latest + strategy: + matrix: + arch: + - x86_64 + - mips_24kc + - mipsel_24kc + + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Build + uses: openwrt/gh-action-sdk@main + env: + ARCH: ${{ matrix.arch }} + PACKAGES: zerotier + V: s + + - name: Store packages + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.arch }}-packages + path: bin/packages/${{ matrix.arch }}/action/*.ipk + + - name: Store logs + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.arch }}-logs + path: | + logs/ + PKG-INFO From e189fb97a9c07e7ab88d90a7dbb4849bbd01505e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Garc=C3=ADa=20Amor?= Date: Fri, 22 Nov 2024 10:09:04 +0100 Subject: [PATCH 2/3] Updates to 1.14.2 --- zerotier/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zerotier/Makefile b/zerotier/Makefile index bce1255..cf9d512 100644 --- a/zerotier/Makefile +++ b/zerotier/Makefile @@ -6,12 +6,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=zerotier -PKG_VERSION:=1.14.1 +PKG_VERSION:=1.14.2 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/zerotier/ZeroTierOne/tar.gz/$(PKG_VERSION)? -PKG_HASH:=4f9f40b27c5a78389ed3f3216c850921f6298749e5819e9f2edabb2672ce9ca0 +PKG_HASH:=c2f64339fccf5148a7af089b896678d655fbfccac52ddce7714314a59d7bddbb PKG_BUILD_DIR:=$(BUILD_DIR)/ZeroTierOne-$(PKG_VERSION) PKG_MAINTAINER:=Moritz Warning From 4df97177b0d3307a62f3e8c63c40be356c1800bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Garc=C3=ADa=20Amor?= Date: Fri, 22 Nov 2024 12:11:40 +0100 Subject: [PATCH 3/3] The packages are now apk --- .github/workflows/multi-arch-test-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index a1a8d14..bfc0842 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -30,7 +30,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ matrix.arch }}-packages - path: bin/packages/${{ matrix.arch }}/action/*.ipk + path: bin/packages/${{ matrix.arch }}/action/*.apk - name: Store logs uses: actions/upload-artifact@v4