2020-08-12 11:28:52 +03:00
|
|
|
name: Leo Release
|
|
|
|
on:
|
|
|
|
push:
|
2020-08-13 10:21:35 +03:00
|
|
|
tags:
|
|
|
|
- 'v*.*.*'
|
2020-08-13 02:20:23 +03:00
|
|
|
|
2020-08-12 11:28:52 +03:00
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
|
|
|
|
jobs:
|
2020-08-13 02:20:23 +03:00
|
|
|
ubuntu:
|
2020-08-12 11:28:52 +03:00
|
|
|
name: Ubuntu
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
|
|
|
|
- name: Build Leo
|
2020-08-12 11:47:45 +03:00
|
|
|
run: |
|
2020-08-15 07:26:30 +03:00
|
|
|
cargo build --all --release && strip target/release/leo
|
2020-08-12 11:28:52 +03:00
|
|
|
env:
|
|
|
|
CARGO_NET_GIT_FETCH_WITH_CLI: true
|
|
|
|
|
2020-08-15 07:36:11 +03:00
|
|
|
- id: get_version
|
|
|
|
uses: battila7/get-version-action@v2
|
|
|
|
|
2020-08-14 11:04:47 +03:00
|
|
|
- name: Zip
|
|
|
|
run: |
|
2020-08-21 11:46:48 +03:00
|
|
|
mkdir tempdir
|
|
|
|
mv target/release/leo tempdir
|
|
|
|
cd tempdir
|
|
|
|
zip -r leo-${{ steps.get_version.outputs.version }}-x86_64-unknown-linux-gnu.zip leo
|
|
|
|
cd ..
|
|
|
|
mv tempdir/leo-${{ steps.get_version.outputs.version }}-x86_64-unknown-linux-gnu.zip .
|
2020-08-13 11:39:49 +03:00
|
|
|
|
2020-08-12 11:28:52 +03:00
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
2020-08-12 11:44:46 +03:00
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
2020-08-12 11:28:52 +03:00
|
|
|
with:
|
|
|
|
files: |
|
2020-08-21 11:46:48 +03:00
|
|
|
leo-${{ steps.get_version.outputs.version }}-x86_64-unknown-linux-gnu.zip
|
2020-08-12 11:28:52 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2020-08-13 02:21:00 +03:00
|
|
|
macos:
|
|
|
|
name: macOS
|
2020-08-13 02:20:23 +03:00
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
|
|
|
|
- name: Build Leo
|
|
|
|
run: |
|
2020-08-15 07:26:30 +03:00
|
|
|
cargo build --all --release && strip target/release/leo
|
2020-08-13 02:20:23 +03:00
|
|
|
env:
|
|
|
|
CARGO_NET_GIT_FETCH_WITH_CLI: true
|
|
|
|
|
2020-08-15 07:36:11 +03:00
|
|
|
- id: get_version
|
2020-08-15 07:34:15 +03:00
|
|
|
uses: battila7/get-version-action@v2
|
|
|
|
|
2020-08-14 10:10:34 +03:00
|
|
|
- name: Zip
|
|
|
|
run: |
|
2020-08-21 11:46:48 +03:00
|
|
|
mkdir tempdir
|
|
|
|
mv target/release/leo tempdir
|
|
|
|
cd tempdir
|
|
|
|
zip -r leo-${{ steps.get_version.outputs.version }}-x86_64-apple-darwin.zip leo
|
|
|
|
cd ..
|
|
|
|
mv tempdir/leo-${{ steps.get_version.outputs.version }}-x86_64-apple-darwin.zip .
|
2020-08-13 11:39:49 +03:00
|
|
|
|
2020-08-13 02:20:23 +03:00
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
with:
|
|
|
|
files: |
|
2020-08-21 11:46:48 +03:00
|
|
|
leo-${{ steps.get_version.outputs.version }}-x86_64-apple-darwin.zip
|
2020-08-13 02:20:23 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2020-08-14 09:05:47 +03:00
|
|
|
windows:
|
|
|
|
name: Windows
|
|
|
|
runs-on: windows-latest
|
2020-08-14 10:10:34 +03:00
|
|
|
continue-on-error: true
|
2020-08-14 09:05:47 +03:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
|
|
|
|
- name: Build Leo
|
|
|
|
run: |
|
2020-08-15 11:44:56 +03:00
|
|
|
cargo build --all --release
|
2020-08-14 09:05:47 +03:00
|
|
|
env:
|
|
|
|
CARGO_NET_GIT_FETCH_WITH_CLI: true
|
|
|
|
|
2020-08-15 09:11:38 +03:00
|
|
|
- id: get_version
|
|
|
|
uses: battila7/get-version-action@v2
|
|
|
|
|
2020-08-14 10:10:34 +03:00
|
|
|
- name: Zip
|
|
|
|
run: |
|
2020-08-21 11:46:48 +03:00
|
|
|
mkdir tempdir
|
|
|
|
mv target/release/leo tempdir
|
|
|
|
cd tempdir
|
|
|
|
Compress-Archive leo-${{ steps.get_version.outputs.version }}-x86_64-pc-windows-gnu leo
|
|
|
|
cd ..
|
|
|
|
mv leo-${{ steps.get_version.outputs.version }}-x86_64-pc-windows-gnu .
|
2020-08-14 09:05:47 +03:00
|
|
|
|
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
with:
|
|
|
|
files: |
|
2020-08-21 11:46:48 +03:00
|
|
|
leo-${{ steps.get_version.outputs.version }}-x86_64-pc-windows-gnu.zip
|
2020-08-14 09:05:47 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|