helix-mods/.github/workflows/release.yml

170 lines
4.6 KiB
YAML
Raw Normal View History

name: Release
2021-05-10 09:15:28 +02:00
on:
2021-05-10 08:48:07 +02:00
# schedule:
# - cron: '0 0 * * *' # midnight UTC
2021-05-10 09:15:28 +02:00
push:
2021-05-10 10:26:21 +02:00
tags:
2021-05-10 10:37:21 +02:00
- 'v[0-9]+.[0-9]+.[0-9]+'
2021-05-10 09:15:28 +02:00
## - release
jobs:
dist:
name: Dist
runs-on: ${{ matrix.os }}
strategy:
2021-05-10 09:15:28 +02:00
fail-fast: false # don't fail other jobs if one fails
matrix:
build: [x86_64-linux, aarch64-linux, x86_64-macos, x86_64-windows] #, x86_64-win-gnu, win32-msvc
include:
2021-05-10 10:26:21 +02:00
- build: x86_64-linux
os: ubuntu-20.04
2021-05-10 10:26:21 +02:00
rust: stable
2021-05-10 18:19:29 +02:00
target: x86_64-unknown-linux-gnu
2021-05-10 10:26:21 +02:00
cross: false
- build: aarch64-linux
os: ubuntu-20.04
2021-05-10 10:26:21 +02:00
rust: stable
target: aarch64-unknown-linux-gnu
cross: true
- build: x86_64-macos
os: macos-latest
2021-05-10 10:26:21 +02:00
rust: stable
target: x86_64-apple-darwin
2021-05-10 10:26:21 +02:00
cross: false
- build: x86_64-windows
os: windows-2019
2021-05-10 10:26:21 +02:00
rust: stable
target: x86_64-pc-windows-msvc
2021-05-10 10:26:21 +02:00
cross: false
# - build: aarch64-macos
# os: macos-latest
# rust: stable
# target: aarch64-apple-darwin
2021-05-10 10:26:21 +02:00
# - build: x86_64-win-gnu
# os: windows-2019
2021-05-10 10:26:21 +02:00
# rust: stable-x86_64-gnu
# target: x86_64-pc-windows-gnu
# - build: win32-msvc
# os: windows-2019
2021-05-10 10:26:21 +02:00
# rust: stable
# target: i686-pc-windows-msvc
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: true
- name: Install ${{ matrix.rust }} toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
override: true
2021-05-10 10:26:21 +02:00
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
2021-05-10 10:26:21 +02:00
command: test
2021-06-20 03:48:42 +02:00
args: --release --locked
2021-05-10 08:44:09 +02:00
2021-05-10 10:26:21 +02:00
- name: Build release binary
uses: actions-rs/cargo@v1
with:
2021-05-10 10:26:21 +02:00
use-cross: ${{ matrix.cross }}
command: build
args: --release --locked --target ${{ matrix.target }}
- name: Strip release binary (linux and macos)
2021-05-10 10:26:21 +02:00
if: matrix.build == 'x86_64-linux' || matrix.build == 'x86_64-macos'
run: strip "target/${{ matrix.target }}/release/hx"
- name: Strip release binary (arm)
2021-05-10 10:26:21 +02:00
if: matrix.build == 'aarch64-linux'
run: |
docker run --rm -v \
"$PWD/target:/target:Z" \
2021-05-10 10:26:21 +02:00
rustembedded/cross:${{ matrix.target }} \
aarch64-linux-gnu-strip \
/target/${{ matrix.target }}/release/hx
- name: Build archive
shell: bash
run: |
2021-05-11 12:46:58 +02:00
mkdir dist
2021-05-10 10:26:21 +02:00
if [ "${{ matrix.os }}" = "windows-2019" ]; then
2021-05-11 12:46:58 +02:00
cp "target/${{ matrix.target }}/release/hx.exe" "dist/"
2021-05-10 10:26:21 +02:00
else
2021-05-11 12:46:58 +02:00
cp "target/${{ matrix.target }}/release/hx" "dist/"
2021-05-10 10:26:21 +02:00
fi
- uses: actions/upload-artifact@v2.2.4
2021-05-10 10:26:21 +02:00
with:
2021-05-11 12:46:58 +02:00
name: bins-${{ matrix.build }}
path: dist
2021-05-10 10:26:21 +02:00
publish:
name: Publish
needs: [dist]
runs-on: ubuntu-latest
steps:
2021-05-11 12:46:58 +02:00
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: false
2021-05-10 10:26:21 +02:00
- uses: actions/download-artifact@v2
# with:
# path: dist
# - run: ls -al ./dist
- run: ls -al bins-*
2021-05-10 10:26:21 +02:00
2021-05-11 11:50:02 +02:00
- name: Calculate tag name
run: |
name=dev
if [[ $GITHUB_REF == refs/tags/v* ]]; then
name=${GITHUB_REF:10}
fi
echo ::set-output name=val::$name
echo TAG=$name >> $GITHUB_ENV
id: tagname
2021-05-11 12:46:58 +02:00
- name: Build archive
shell: bash
run: |
2021-05-12 15:14:56 +02:00
set -ex
2021-05-11 12:46:58 +02:00
rm -rf tmp
mkdir tmp
mkdir dist
for dir in bins-* ; do
platform=${dir#"bins-"}
if [[ $platform =~ "windows" ]]; then
exe=".exe"
fi
pkgname=helix-$TAG-$platform
mkdir tmp/$pkgname
cp LICENSE README.md tmp/$pkgname
cp -r runtime tmp/$pkgname/
mv bins-$platform/hx$exe tmp/$pkgname
chmod +x tmp/$pkgname/hx$exe
if [ "$exe" = "" ]; then
tar cJf dist/$pkgname.tar.xz -C tmp $pkgname
else
(cd tmp && 7z a -r ../dist/$pkgname.zip $pkgname)
fi
done
2021-05-10 10:26:21 +02:00
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
2021-05-11 12:46:58 +02:00
file: dist/*
2021-05-10 10:26:21 +02:00
file_glob: true
2021-05-11 11:50:02 +02:00
tag: ${{ steps.tagname.outputs.val }}
2021-05-10 10:26:21 +02:00
overwrite: true