2019-12-20 23:15:41 -07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v[0-9]+.[0-9]+.[0-9]*'
|
|
|
|
|
|
|
|
name: Create release and upload binaries
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-linux:
|
2023-07-27 13:27:35 -06:00
|
|
|
name: Build Linux/BSD All
|
2019-12-20 23:15:41 -07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-05-23 11:24:33 -06:00
|
|
|
- uses: actions/checkout@v3
|
2019-12-20 23:15:41 -07:00
|
|
|
|
2023-05-23 11:24:33 -06:00
|
|
|
- uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version-file: 'go.mod'
|
|
|
|
check-latest: true
|
2019-12-20 23:15:41 -07:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2023-07-27 13:27:35 -06:00
|
|
|
make BUILD_NUMBER="${GITHUB_REF#refs/tags/v}" release-linux release-freebsd release-openbsd release-netbsd
|
2019-12-20 23:15:41 -07:00
|
|
|
mkdir release
|
|
|
|
mv build/*.tar.gz release
|
|
|
|
|
|
|
|
- name: Upload artifacts
|
2023-06-14 09:45:01 -06:00
|
|
|
uses: actions/upload-artifact@v3
|
2019-12-20 23:15:41 -07:00
|
|
|
with:
|
|
|
|
name: linux-latest
|
|
|
|
path: release
|
|
|
|
|
|
|
|
build-windows:
|
2022-03-18 11:23:10 -06:00
|
|
|
name: Build Windows
|
2019-12-20 23:15:41 -07:00
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
2023-05-23 11:24:33 -06:00
|
|
|
- uses: actions/checkout@v3
|
2019-12-20 23:15:41 -07:00
|
|
|
|
2023-05-23 11:24:33 -06:00
|
|
|
- uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version-file: 'go.mod'
|
|
|
|
check-latest: true
|
2019-12-20 23:15:41 -07:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
echo $Env:GITHUB_REF.Substring(11)
|
2022-03-18 11:23:10 -06:00
|
|
|
mkdir build\windows-amd64
|
|
|
|
$Env:GOARCH = "amd64"
|
|
|
|
go build -trimpath -ldflags "-X main.Build=$($Env:GITHUB_REF.Substring(11))" -o build\windows-amd64\nebula.exe ./cmd/nebula-service
|
|
|
|
go build -trimpath -ldflags "-X main.Build=$($Env:GITHUB_REF.Substring(11))" -o build\windows-amd64\nebula-cert.exe ./cmd/nebula-cert
|
|
|
|
mkdir build\windows-arm64
|
|
|
|
$Env:GOARCH = "arm64"
|
|
|
|
go build -trimpath -ldflags "-X main.Build=$($Env:GITHUB_REF.Substring(11))" -o build\windows-arm64\nebula.exe ./cmd/nebula-service
|
|
|
|
go build -trimpath -ldflags "-X main.Build=$($Env:GITHUB_REF.Substring(11))" -o build\windows-arm64\nebula-cert.exe ./cmd/nebula-cert
|
2021-11-08 20:55:10 -07:00
|
|
|
mkdir build\dist\windows
|
|
|
|
mv dist\windows\wintun build\dist\windows\
|
2019-12-20 23:15:41 -07:00
|
|
|
|
|
|
|
- name: Upload artifacts
|
2023-06-14 09:45:01 -06:00
|
|
|
uses: actions/upload-artifact@v3
|
2019-12-20 23:15:41 -07:00
|
|
|
with:
|
|
|
|
name: windows-latest
|
|
|
|
path: build
|
|
|
|
|
|
|
|
build-darwin:
|
2021-11-09 09:49:54 -07:00
|
|
|
name: Build Universal Darwin
|
|
|
|
env:
|
|
|
|
HAS_SIGNING_CREDS: ${{ secrets.AC_USERNAME != '' }}
|
|
|
|
runs-on: macos-11
|
2019-12-20 23:15:41 -07:00
|
|
|
steps:
|
2023-05-23 11:24:33 -06:00
|
|
|
- uses: actions/checkout@v3
|
2019-12-20 23:15:41 -07:00
|
|
|
|
2023-05-23 11:24:33 -06:00
|
|
|
- uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version-file: 'go.mod'
|
|
|
|
check-latest: true
|
2019-12-20 23:15:41 -07:00
|
|
|
|
2021-11-09 09:49:54 -07:00
|
|
|
- name: Import certificates
|
|
|
|
if: env.HAS_SIGNING_CREDS == 'true'
|
|
|
|
uses: Apple-Actions/import-codesign-certs@v1
|
|
|
|
with:
|
|
|
|
p12-file-base64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }}
|
|
|
|
p12-password: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Build, sign, and notarize
|
|
|
|
env:
|
|
|
|
AC_USERNAME: ${{ secrets.AC_USERNAME }}
|
|
|
|
AC_PASSWORD: ${{ secrets.AC_PASSWORD }}
|
2019-12-20 23:15:41 -07:00
|
|
|
run: |
|
2021-11-09 09:49:54 -07:00
|
|
|
rm -rf release
|
2019-12-20 23:15:41 -07:00
|
|
|
mkdir release
|
2021-11-09 09:49:54 -07:00
|
|
|
make BUILD_NUMBER="${GITHUB_REF#refs/tags/v}" service build/darwin-amd64/nebula build/darwin-amd64/nebula-cert
|
|
|
|
make BUILD_NUMBER="${GITHUB_REF#refs/tags/v}" service build/darwin-arm64/nebula build/darwin-arm64/nebula-cert
|
|
|
|
lipo -create -output ./release/nebula ./build/darwin-amd64/nebula ./build/darwin-arm64/nebula
|
|
|
|
lipo -create -output ./release/nebula-cert ./build/darwin-amd64/nebula-cert ./build/darwin-arm64/nebula-cert
|
|
|
|
|
|
|
|
if [ -n "$AC_USERNAME" ]; then
|
|
|
|
codesign -s "10BC1FDDEB6CE753550156C0669109FAC49E4D1E" -f -v --timestamp --options=runtime -i "net.defined.nebula" ./release/nebula
|
|
|
|
codesign -s "10BC1FDDEB6CE753550156C0669109FAC49E4D1E" -f -v --timestamp --options=runtime -i "net.defined.nebula-cert" ./release/nebula-cert
|
|
|
|
fi
|
|
|
|
|
|
|
|
zip -j release/nebula-darwin.zip release/nebula-cert release/nebula
|
|
|
|
|
|
|
|
if [ -n "$AC_USERNAME" ]; then
|
|
|
|
xcrun notarytool submit ./release/nebula-darwin.zip --team-id "576H3XS7FP" --apple-id "$AC_USERNAME" --password "$AC_PASSWORD" --wait
|
|
|
|
fi
|
2019-12-20 23:15:41 -07:00
|
|
|
|
|
|
|
- name: Upload artifacts
|
2023-06-14 09:45:01 -06:00
|
|
|
uses: actions/upload-artifact@v3
|
2019-12-20 23:15:41 -07:00
|
|
|
with:
|
|
|
|
name: darwin-latest
|
2021-11-09 09:49:54 -07:00
|
|
|
path: ./release/*
|
2019-12-20 23:15:41 -07:00
|
|
|
|
|
|
|
release:
|
|
|
|
name: Create and Upload Release
|
|
|
|
needs: [build-linux, build-darwin, build-windows]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-06-14 09:45:01 -06:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
2021-11-09 09:49:54 -07:00
|
|
|
- name: Download artifacts
|
2023-06-14 09:45:01 -06:00
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
path: artifacts
|
2019-12-20 23:15:41 -07:00
|
|
|
|
|
|
|
- name: Zip Windows
|
|
|
|
run: |
|
2023-06-14 09:45:01 -06:00
|
|
|
cd artifacts/windows-latest
|
2022-03-18 11:23:10 -06:00
|
|
|
cp windows-amd64/* .
|
2021-11-08 20:55:10 -07:00
|
|
|
zip -r nebula-windows-amd64.zip nebula.exe nebula-cert.exe dist
|
2022-03-18 11:23:10 -06:00
|
|
|
cp windows-arm64/* .
|
|
|
|
zip -r nebula-windows-arm64.zip nebula.exe nebula-cert.exe dist
|
2019-12-20 23:15:41 -07:00
|
|
|
|
|
|
|
- name: Create sha256sum
|
|
|
|
run: |
|
2023-06-14 09:45:01 -06:00
|
|
|
cd artifacts
|
2019-12-20 23:15:41 -07:00
|
|
|
for dir in linux-latest darwin-latest windows-latest
|
|
|
|
do
|
|
|
|
(
|
|
|
|
cd $dir
|
|
|
|
if [ "$dir" = windows-latest ]
|
|
|
|
then
|
2022-03-18 11:23:10 -06:00
|
|
|
sha256sum <windows-amd64/nebula.exe | sed 's=-$=nebula-windows-amd64.zip/nebula.exe='
|
|
|
|
sha256sum <windows-amd64/nebula-cert.exe | sed 's=-$=nebula-windows-amd64.zip/nebula-cert.exe='
|
|
|
|
sha256sum <windows-arm64/nebula.exe | sed 's=-$=nebula-windows-arm64.zip/nebula.exe='
|
|
|
|
sha256sum <windows-arm64/nebula-cert.exe | sed 's=-$=nebula-windows-arm64.zip/nebula-cert.exe='
|
2019-12-20 23:15:41 -07:00
|
|
|
sha256sum nebula-windows-amd64.zip
|
2022-03-18 11:23:10 -06:00
|
|
|
sha256sum nebula-windows-arm64.zip
|
2021-11-09 09:49:54 -07:00
|
|
|
elif [ "$dir" = darwin-latest ]
|
|
|
|
then
|
|
|
|
sha256sum <nebula-darwin.zip | sed 's=-$=nebula-darwin.zip='
|
|
|
|
sha256sum <nebula | sed 's=-$=nebula-darwin.zip/nebula='
|
|
|
|
sha256sum <nebula-cert | sed 's=-$=nebula-darwin.zip/nebula-cert='
|
2019-12-20 23:15:41 -07:00
|
|
|
else
|
2021-11-09 09:49:54 -07:00
|
|
|
for v in *.tar.gz
|
|
|
|
do
|
|
|
|
sha256sum $v
|
|
|
|
tar zxf $v --to-command='sh -c "sha256sum | sed s=-$='$v'/$TAR_FILENAME="'
|
|
|
|
done
|
2019-12-20 23:15:41 -07:00
|
|
|
fi
|
|
|
|
)
|
|
|
|
done | sort -k 2 >SHASUM256.txt
|
|
|
|
|
|
|
|
- name: Create Release
|
|
|
|
id: create_release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-06-14 09:45:01 -06:00
|
|
|
run: |
|
|
|
|
cd artifacts
|
|
|
|
gh release create \
|
|
|
|
--verify-tag \
|
|
|
|
--title "Release ${{ github.ref_name }}" \
|
|
|
|
"${{ github.ref_name }}" \
|
|
|
|
SHASUM256.txt *-latest/*.zip *-latest/*.tar.gz
|