-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
146 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
# .github/workflows/release.yml | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: {} | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
build: | ||
name: build ${{ matrix.target }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- target: x86_64-pc-windows-msvc | ||
os: windows-latest | ||
archive: zip | ||
- target: x86_64-pc-windows-gnu | ||
os: windows-latest | ||
archive: zip | ||
- target: x86_64-apple-darwin | ||
os: macos-latest | ||
archive: zip | ||
- target: aarch64-apple-darwin | ||
os: macos-latest | ||
archive: zip | ||
- target: aarch64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
archive: tar.gz tar.xz tar.zst | ||
- target: aarch64-unknown-linux-musl | ||
os: ubuntu-latest | ||
archive: tar.gz tar.xz tar.zst | ||
# - target: arch64-unknown-linux-musl | ||
# archive: tar.gz tar.xz tar.zst | ||
- target: x86_64-unknown-linux-musl | ||
os: ubuntu-latest | ||
archive: tar.gz tar.xz tar.zst | ||
- target: arm-unknown-linux-musleabi | ||
os: ubuntu-latest | ||
archive: tar.gz tar.xz tar.zst | ||
- target: arm-unknown-linux-musleabihf | ||
os: ubuntu-latest | ||
archive: tar.gz tar.xz tar.zst | ||
# - target: mips-unknown-linux-musl | ||
# archive: tar.gz tar.xz tar.zst | ||
# - target: mips-unknown-linux-musl | ||
# archive: tar.gz tar.xz tar.zst | ||
# - target: mips64-unknown-linux-muslabi64 | ||
# archive: tar.gz tar.xz tar.zst | ||
- target: aarch64-linux-android | ||
os: ubuntu-latest | ||
archive: tar.gz tar.xz tar.zst | ||
# - target: x86_64-unknown-freebsd | ||
# os: ubuntu-latest | ||
# archive: tar.gz tar.xz tar.zst | ||
# - target: x86_64-unknown-netbsd | ||
# os: ubuntu-latest | ||
# archive: tar.gz tar.xz tar.zst | ||
# - target: wasm32-unknown-emscripten | ||
# archive: tar.gz tar.xz tar.zst | ||
|
||
runs-on: ${{matrix.os}} | ||
env: | ||
DIST_DIR: zerotier-edge-${{ matrix.target }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
|
||
- name: Build web | ||
run: | | ||
npm install | ||
npm run build | ||
- name: Install Rust Toolchain Components | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
target: ${{ matrix.target }} | ||
override: true | ||
|
||
- name: Build binary | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
use-cross: ${{ matrix.os == 'ubuntu-latest' }} | ||
command: build | ||
args: --release --target=${{ matrix.target }} | ||
|
||
- name: Pre publish | ||
run: | | ||
mkdir $DIST_DIR | ||
cp LICENSE $DIST_DIR | ||
cp README*.md $DIST_DIR | ||
shell: bash | ||
|
||
- name: Publish archive | ||
if: ${{ !contains(matrix.target, 'windows') && !contains(matrix.target, 'darwin') }} | ||
env: | ||
ARCHIVE_FILE: zerotier-edge-${{ matrix.target }}.tar.gz | ||
run: | | ||
cp target/${{ matrix.target }}/release/zerotier-edge $DIST_DIR | ||
tar -zcvf $ARCHIVE_FILE $DIST_DIR | ||
shasum -a256 $ARCHIVE_FILE > $ARCHIVE_FILE-sha256sum.txt | ||
echo "archive_file=$ARCHIVE_FILE" >> $GITHUB_ENV | ||
- name: Publish zip archive macos | ||
if: ${{ contains(matrix.target, 'darwin') }} | ||
env: | ||
ARCHIVE_FILE: zerotier-edge-${{ matrix.target }}.zip | ||
run: | | ||
cp target/${{ matrix.target }}/release/zerotier-edge $DIST_DIR | ||
zip -9r $ARCHIVE_FILE $DIST_DIR | ||
shasum -a256 $ARCHIVE_FILE > $ARCHIVE_FILE-sha256sum.txt | ||
echo "archive_file=$ARCHIVE_FILE" >> $GITHUB_ENV | ||
- name: Publish zip archive windows | ||
if: ${{ contains(matrix.target, 'windows') }} | ||
env: | ||
ARCHIVE_FILE: zerotier-edge-${{ matrix.target }}.zip | ||
run: | | ||
cp target/${{ matrix.target }}/release/zerotier-edge.exe $DIST_DIR | ||
7z a -tzip $ARCHIVE_FILE $DIST_DIR | ||
echo ${{ hashFiles(format(' zerotier-edge-{0}.zip', matrix.target)) }} > $ARCHIVE_FILE-sha256sum.txt | ||
echo "archive_file=$ARCHIVE_FILE" >> $GITHUB_ENV | ||
shell: bash | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: zerotier-edge-${{ matrix.target }} | ||
retention-days: 30 | ||
path: ${{ env.archive_file }} | ||
|
||
- name: Publish release | ||
uses: softprops/[email protected] | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
with: | ||
draft: false | ||
files: | | ||
${{ env.archive_file }} | ||
${{ env.archive_file }}-sha256sum.txt | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |