mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-14 21:57:49 +08:00
168 lines
6.2 KiB
YAML
168 lines
6.2 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
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: Build
|
|
run: |
|
|
cd netclient
|
|
env GOOS=linux GOARCH=amd64 go build -o build/netclient main.go
|
|
env GOOS=linux GOARCH=arm GOARM=5 go build -o build/netclient-arm5/netclient main.go
|
|
env GOOS=linux GOARCH=arm GOARM=6 go build -o build/netclient-arm6/netclient main.go
|
|
env GOOS=linux GOARCH=arm GOARM=7 go build -o build/netclient-arm7/netclient main.go
|
|
env GOOS=linux GOARCH=arm64 go build -o build/netclient-arm64/netclient main.go
|
|
env GOOS=linux GOARCH=mipsle go build -ldflags "-s -w" -o build/netclient-mipsle/netclient main.go && upx build/netclient-mipsle/netclient
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=amd64 go build -o build/netclient-freebsd/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=arm GOARM=5 go build -o build/netclient-freebsd-arm5/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=arm GOARM=6 go build -o build/netclient-freebsd-arm6/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=arm GOARM=7 go build -o build/netclient-freebsd-arm7/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=freebsd GOARCH=arm64 go build -o build/netclient-freebsd-arm64/netclient main.go
|
|
env CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o build/netclient-darwin/netclient main.go
|
|
|
|
- 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
|