Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-sannikov committed Feb 21, 2024
1 parent d459415 commit c79dd88
Showing 1 changed file with 38 additions and 53 deletions.
91 changes: 38 additions & 53 deletions .github/workflows/build-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,57 +94,42 @@ jobs:
exit 1
fi
# - name: Update feeds
# run: |
# echo "Vermagic:"
# cat ./build_dir/target-*/linux-*/linux-*/.vermagic

# wget https://downloads.openwrt.org/releases/${{ matrix.tag }}/targets/${{ matrix.build_env.target}}/${{ matrix.build_env.subtarget}}/feeds.buildinfo -O feeds.conf
# echo "src-git awgopenwrt https://github.com/yury-sannikov/awg-openwrt.git" >> ./feeds.conf

# ./scripts/feeds update luci
# ./scripts/feeds install -a -p luci
# ./scripts/feeds update awgopenwrt
# ./scripts/feeds install -a -p awgopenwrt

# # wget https://downloads.openwrt.org/releases/${{ matrix.tag }}/targets/${{ matrix.build_env.target}}/${{ matrix.build_env.subtarget}}/config.buildinfo -O .config
# # echo "CONFIG_PACKAGE_kmod-amneziawg=m" >> .config
# # echo "CONFIG_PACKAGE_amneziawg-tools=y" >> .config
# # echo "CONFIG_PACKAGE_luci-app-amneziawg=y" >> .config
# # echo "CONFIG_PACKAGE_kmod-amneziawg=m" >> .config
# # echo "CONFIG_PACKAGE_kmod-crypto-lib-chacha20=m" >> .config
# # echo "CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=m" >> .config
# # echo "CONFIG_PACKAGE_kmod-crypto-chacha20poly1305=m" >> .config

# # make defconfig

# - name: Build amneziawg-tools
# run: |
# cat ./build_dir/target-*/linux-*/linux-*/.vermagic || true
# make V=s package/amneziawg-tools/{clean,download,prepare}
# make V=s package/amneziawg-tools/compile

# - name: Build kmod-amneziawg
# run: |
# make package/kmod-amneziawg/{clean,download,prepare}
# make package/kmod-amneziawg/compile

# - name: Build luci
# run: |
# make package/luci-app-amneziawg/{clean,download,prepare}
# make package/luci-app-amneziawg/compile V=s

# - name: Prepare artifacts
# run: |
# tag_name=${{ github.ref_name }}
# mkdir -p awgrelease
# postfix="${tag_name}_v${{ matrix.tag }}_${{ matrix.build_env.pkgarch}}_${{ matrix.build_env.target}}_${{ matrix.build_env.subtarget}}"
# cp bin/packages/${{ matrix.build_env.pkgarch }}/awgopenwrt/amneziawg-tools_*.ipk awgrelease/amneziawg-tools_${postfix}.ipk
# cp bin/packages/${{ matrix.build_env.pkgarch }}/awgopenwrt/luci-app-amneziawg_*.ipk awgrelease/luci-app-amneziawg_${postfix}.ipk
# cp bin/targets/${{ matrix.build_env.target}}/${{ matrix.build_env.subtarget}}/packages/kmod-amneziawg_*.ipk awgrelease/kmod-amneziawg_${postfix}.ipk

# - name: Release
# uses: softprops/action-gh-release@v1
# with:
# files: awgrelease/*.ipk
- name: Build amneziawg-tools
run: |
VERMAGIC=`cat ./build_dir/target-*/linux-*/linux-*/.vermagic`
echo "Vermagic: $VERMAGIC"
VERMAGIC_EXPECTED=${{ matrix.build_env.vermagic }}
if [ "$VERMAGIC" != "$VERMAGIC_EXPECTED" ]; then
echo Vermagic mismatch: $VERMAGIC, expected $VERMAGIC_EXPECTED
exit 1
fi
make V=s package/amneziawg-tools/{clean,download,prepare}
make V=s package/amneziawg-tools/compile
- name: Build kmod-amneziawg
run: |
make package/kmod-amneziawg/{clean,download,prepare}
make package/kmod-amneziawg/compile
- name: Build luci
run: |
make package/luci-app-amneziawg/{clean,download,prepare}
make package/luci-app-amneziawg/compile V=s
- name: Prepare artifacts
run: |
tag_name=${{ github.ref_name }}
mkdir -p awgrelease
postfix="${tag_name}_v${{ matrix.tag }}_${{ matrix.build_env.pkgarch}}_${{ matrix.build_env.target}}_${{ matrix.build_env.subtarget}}"
cp bin/packages/${{ matrix.build_env.pkgarch }}/awgopenwrt/amneziawg-tools_*.ipk awgrelease/amneziawg-tools_${postfix}.ipk
cp bin/packages/${{ matrix.build_env.pkgarch }}/awgopenwrt/luci-app-amneziawg_*.ipk awgrelease/luci-app-amneziawg_${postfix}.ipk
cp bin/targets/${{ matrix.build_env.target}}/${{ matrix.build_env.subtarget}}/packages/kmod-amneziawg_*.ipk awgrelease/kmod-amneziawg_${postfix}.ipk
- name: Release
uses: softprops/action-gh-release@v1
with:
files: awgrelease/*.ipk

0 comments on commit c79dd88

Please sign in to comment.