2022-09-15 08:55:29 +00:00
|
|
|
name: release
|
2022-09-15 00:22:39 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2022-09-15 08:55:29 +00:00
|
|
|
build-mac-arm:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: install rust nightly
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
default: true
|
|
|
|
override: true
|
2022-09-15 00:22:39 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: install target
|
|
|
|
run: rustup target add aarch64-apple-darwin
|
2022-09-15 00:22:39 +00:00
|
|
|
|
2022-12-02 23:39:41 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-11-22 16:45:14 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: build
|
2022-11-03 23:36:14 +00:00
|
|
|
run: cargo build --package cli --release --target aarch64-apple-darwin
|
2022-09-15 08:55:29 +00:00
|
|
|
|
|
|
|
- name: archive
|
2022-10-25 23:27:33 +00:00
|
|
|
run: gtar -czvf "helios_darwin_arm64.tar.gz" -C ./target/aarch64-apple-darwin/release helios
|
2022-09-15 08:55:29 +00:00
|
|
|
|
|
|
|
- name: generate tag name
|
|
|
|
id: tag
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=release_tag::nightly-${GITHUB_SHA}"
|
|
|
|
|
|
|
|
- name: release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
|
|
|
tag_name: ${{ steps.tag.outputs.release_tag }}
|
|
|
|
prerelease: true
|
|
|
|
files: |
|
2022-10-25 22:23:43 +00:00
|
|
|
helios_darwin_arm64.tar.gz
|
2022-09-15 08:55:29 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
build-mac-amd:
|
|
|
|
runs-on: macos-latest
|
2022-09-15 00:22:39 +00:00
|
|
|
steps:
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: install rust nightly
|
|
|
|
uses: actions-rs/toolchain@v1
|
2022-09-15 00:22:39 +00:00
|
|
|
with:
|
2022-09-15 08:55:29 +00:00
|
|
|
toolchain: nightly
|
|
|
|
default: true
|
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: install target
|
|
|
|
run: rustup target add x86_64-apple-darwin
|
|
|
|
|
2022-12-02 23:39:41 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-11-22 16:45:14 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: build
|
2022-11-03 23:36:14 +00:00
|
|
|
run: cargo build --package cli --release --target x86_64-apple-darwin
|
2022-09-15 00:22:39 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: archive
|
2022-10-25 23:27:33 +00:00
|
|
|
run: gtar -czvf "helios_darwin_amd64.tar.gz" -C ./target/x86_64-apple-darwin/release helios
|
2022-09-15 08:55:29 +00:00
|
|
|
|
|
|
|
- name: generate tag name
|
|
|
|
id: tag
|
2022-09-15 00:22:39 +00:00
|
|
|
run: |
|
2022-09-15 08:55:29 +00:00
|
|
|
echo "::set-output name=release_tag::nightly-${GITHUB_SHA}"
|
|
|
|
|
|
|
|
- name: release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
|
|
|
tag_name: ${{ steps.tag.outputs.release_tag }}
|
|
|
|
prerelease: true
|
|
|
|
files: |
|
2022-10-25 22:23:43 +00:00
|
|
|
helios_darwin_amd64.tar.gz
|
2022-09-15 08:55:29 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-09-15 00:22:39 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
build-linux-arm:
|
|
|
|
runs-on: ubuntu-latest
|
2022-09-15 00:22:39 +00:00
|
|
|
steps:
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v1
|
2022-09-15 00:22:39 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: install rust nightly
|
2022-09-15 00:22:39 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-09-15 00:36:04 +00:00
|
|
|
toolchain: nightly
|
2022-09-15 08:55:29 +00:00
|
|
|
default: true
|
2022-09-15 00:22:39 +00:00
|
|
|
override: true
|
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: install target
|
|
|
|
run: rustup target add aarch64-unknown-linux-gnu
|
2022-09-15 00:22:39 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: install dependencies
|
2022-09-15 00:22:39 +00:00
|
|
|
run: |
|
|
|
|
sudo apt-get update -y
|
|
|
|
sudo apt-get install -y gcc-aarch64-linux-gnu
|
|
|
|
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
|
|
|
|
|
2022-12-02 23:39:41 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-11-22 16:45:14 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: build
|
2022-11-03 23:36:14 +00:00
|
|
|
run: cargo build --package cli --release --target aarch64-unknown-linux-gnu
|
2022-09-15 08:55:29 +00:00
|
|
|
|
|
|
|
- name: archive
|
2022-10-25 23:27:33 +00:00
|
|
|
run: tar -czvf "helios_linux_arm64.tar.gz" -C ./target/aarch64-unknown-linux-gnu/release helios
|
2022-09-15 08:55:29 +00:00
|
|
|
|
|
|
|
- name: generate tag name
|
|
|
|
id: tag
|
2022-09-15 00:22:39 +00:00
|
|
|
run: |
|
2022-09-15 08:55:29 +00:00
|
|
|
echo "::set-output name=release_tag::nightly-${GITHUB_SHA}"
|
|
|
|
|
|
|
|
- name: release
|
2022-09-15 00:22:39 +00:00
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
2022-09-15 08:55:29 +00:00
|
|
|
tag_name: ${{ steps.tag.outputs.release_tag }}
|
2022-09-15 00:22:39 +00:00
|
|
|
prerelease: true
|
|
|
|
files: |
|
2022-10-25 22:23:43 +00:00
|
|
|
helios_linux_arm64.tar.gz
|
2022-09-15 08:55:29 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-09-15 00:22:39 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
build-linux-amd:
|
|
|
|
runs-on: ubuntu-latest
|
2022-09-15 00:22:39 +00:00
|
|
|
steps:
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v1
|
2022-09-15 00:22:39 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: install rust nightly
|
|
|
|
uses: actions-rs/toolchain@v1
|
2022-09-15 00:22:39 +00:00
|
|
|
with:
|
2022-09-15 08:55:29 +00:00
|
|
|
toolchain: nightly
|
|
|
|
default: true
|
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: install target
|
|
|
|
run: rustup target add x86_64-unknown-linux-gnu
|
|
|
|
|
2022-12-02 23:39:41 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-11-22 16:45:14 +00:00
|
|
|
|
2022-09-15 08:55:29 +00:00
|
|
|
- name: build
|
2022-11-03 23:36:14 +00:00
|
|
|
run: cargo build --package cli --release --target x86_64-unknown-linux-gnu
|
2022-09-15 08:55:29 +00:00
|
|
|
|
|
|
|
- name: archive
|
2022-10-25 23:27:33 +00:00
|
|
|
run: tar -czvf "helios_linux_amd64.tar.gz" -C ./target/x86_64-unknown-linux-gnu/release helios
|
2022-09-15 08:55:29 +00:00
|
|
|
|
|
|
|
- name: generate tag name
|
|
|
|
id: tag
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=release_tag::nightly-${GITHUB_SHA}"
|
|
|
|
|
|
|
|
- name: release
|
|
|
|
uses: softprops/action-gh-release@v1
|
2022-09-15 00:22:39 +00:00
|
|
|
with:
|
2022-09-15 08:55:29 +00:00
|
|
|
tag_name: ${{ steps.tag.outputs.release_tag }}
|
|
|
|
prerelease: true
|
|
|
|
files: |
|
2022-10-25 22:23:43 +00:00
|
|
|
helios_linux_amd64.tar.gz
|
2022-09-15 08:55:29 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|