mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-11 18:32:08 +08:00
220 lines
10 KiB
YAML
220 lines
10 KiB
YAML
name: Build and Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Netmaker version'
|
|
required: false
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get Version Number
|
|
run: |
|
|
if [[ -n "${{ github.event.inputs.version }}" ]]; then
|
|
NETMAKER_VERSION=${{ github.event.inputs.version }}
|
|
else
|
|
NETMAKER_VERSION=$(curl -fsSL https://api.github.com/repos/gravitl/netmaker/tags | grep 'name' | head -1 | cut -d'"' -f4)
|
|
fi
|
|
echo "NETMAKER_VERSION=${NETMAKER_VERSION}" >> $GITHUB_ENV
|
|
# remove leading v for package (deb, rpm, etc) versions
|
|
echo "PACKAGE_VERSION=${NETMAKER_VERSION:1}" >> $GITHUB_ENV
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: Build
|
|
run: |
|
|
env CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netmaker main.go
|
|
cd netclient
|
|
env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=5 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-arm5/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=6 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-arm6/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=7 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-arm7/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-arm64/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=linux GOARCH=mipsle go build -ldflags "-s -w -X 'main.version=$NETMAKER_VERSION'" -o build/netclient-mipsle/netclient main.go && upx build/netclient-mipsle/netclient
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=amd64 go build -ldflags="-X 'main.Version=${NETMAKER_VERSION}'" -o build/netclient-freebsd/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=arm GOARM=5 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-freebsd-arm5/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=arm GOARM=6 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-freebsd-arm6/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=arm GOARM=7 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-freebsd-arm7/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=arm64 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-freebsd-arm64/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-darwin/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -ldflags="-X 'main.version=${NETMAKER_VERSION}'" -o build/netclient-darwin-arm64/netclient main.go
|
|
|
|
# - name: Upload netmaker x86 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: build/netmaker
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netmaker
|
|
|
|
- name: Upload x86 to Release
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: netclient/build/netclient
|
|
tag: ${{ env.NETMAKER_VERSION }}
|
|
overwrite: true
|
|
prerelease: true
|
|
asset_name: netclient
|
|
|
|
#- name: Upload arm5 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-arm5/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-arm5
|
|
|
|
#- name: Upload arm6 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-arm6/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-arm6
|
|
|
|
#- name: Upload arm7 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-arm7/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-arm7
|
|
|
|
#- name: Upload arm64 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-arm64/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-arm64
|
|
|
|
#- name: Upload mipsle to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-mipsle/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-mipsle
|
|
|
|
#- name: Upload freebsd to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-freebsd/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-freebsd
|
|
#
|
|
#- name: Upload freebsd-arm5 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-freebsd-arm5/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-freebsd-arm5
|
|
#
|
|
#- name: Upload freebsd-arm6 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-freebsd-arm6/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-freebsd-arm6
|
|
#
|
|
#- name: Upload freebsd-arm7 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-freebsd-arm7/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-freebsd-arm7
|
|
#
|
|
#- name: Upload freebsd-arm64 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-freebsd-arm64/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-freebsd-arm64
|
|
#
|
|
#- name: Upload darwin to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-darwin/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-darwin
|
|
|
|
#- name: Upload darwin-arm64 to Release
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# file: netclient/build/netclient-darwin-arm64/netclient
|
|
# tag: ${{ env.NETMAKER_VERSION }}
|
|
# overwrite: true
|
|
# prerelease: true
|
|
# asset_name: netclient-darwin-arm64
|
|
|
|
- name: Package x86 deb
|
|
uses: gravitl/github-action-fpm@master
|
|
with:
|
|
fpm_args: './netclient/build/netclient=/sbin/netclient ./netclient/build/netclient.service=/lib/systemd/system/netclient.service'
|
|
fpm_opts: '--debug -s dir -t deb --architecture amd64 --version ${{ env.PACKAGE_VERSION }}'
|
|
- name: Upload x86 deb to Release
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: netclient_${{ env.PACKAGE_VERSION }}_amd64.deb
|
|
tag: ${{ env.NETMAKER_VERSION }}
|
|
overwrite: true
|
|
prerelease: true
|
|
asset_name: netclient_${{ env.PACKAGE_VERSION }}_amd64.deb
|
|
|
|
- name: Package arm64 deb
|
|
uses: gravitl/github-action-fpm@master
|
|
with:
|
|
fpm_args: './netclient/build/netclient-arm64/netlient=/sbin/netclient ./netclient/build/netclient.service=/lib/systemd/netclient.service'
|
|
fpm_opts: '--debug -s dir -t deb --architecture arm64 --version ${{ env.PACKAGE_VERSION }}'
|
|
- name: Upload x86 deb to Release
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: netclient_${{ env.PACKAGE_VERSION }}_amd64.deb
|
|
tag: ${{ env.NETMAKER_VERSION }}
|
|
overwrite: true
|
|
prerelease: true
|
|
asset_name: netclient_${{ env.PACKAGE_VERSION }}_amd64.deb
|