chore: release #61
Workflow file for this run
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
name: Rust | |
on: | |
push: | |
tags: ["v*"] | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-unknown-linux-musl | |
os: ubuntu-latest | |
output: dum | |
archive: tar.gz | |
- target: arm-unknown-linux-musleabihf | |
os: ubuntu-latest | |
output: dum | |
archive: tar.gz | |
- target: aarch64-unknown-linux-musl | |
os: ubuntu-latest | |
output: dum | |
archive: tar.gz | |
- target: x86_64-apple-darwin | |
os: macos-latest | |
output: dum | |
archive: zip | |
- target: aarch64-apple-darwin | |
os: macos-latest | |
output: dum | |
archive: zip | |
# Failing | |
# - target: arm-unknown-linux-musleabihf | |
# os: ubuntu-latest | |
# output: dum | |
# archive: tgz | |
- target: x86_64-pc-windows-msvc | |
os: windows-latest | |
output: dum.exe | |
archive: zip | |
- target: aarch64-pc-windows-msvc | |
os: windows-latest | |
output: dum.exe | |
archive: zip | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: FranzDiebold/[email protected] | |
- name: Install coreutils for macOS | |
if: matrix.os == 'macos-latest' | |
run: brew install coreutils | |
# Cache files between builds | |
- name: Setup | Cache Cargo | |
uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Setup | Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
target: ${{ matrix.target }} | |
override: true | |
- name: Run Tests | |
run: cargo test | |
- name: Build release | |
uses: actions-rs/cargo@v1 | |
# TODO: Remove this once it's the default | |
env: | |
SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk | |
with: | |
command: build | |
args: --target ${{ matrix.target }} --release | |
use-cross: ${{ matrix.os == 'ubuntu-latest' }} | |
- name: Copy and rename utility | |
run: cp target/${{ matrix.target }}/release/${{ matrix.output }} ${{ matrix.output }} | |
- name: Create archive (linux) | |
if: ${{ matrix.os != 'macos-latest' && matrix.os != 'windows-latest' }} | |
run: | | |
tar -czvf dum-${{ matrix.target }}.${{ matrix.archive }} ${{ matrix.output }} | |
sha256sum dum-${{ matrix.target }}.${{ matrix.archive }} > dum-${{ matrix.target }}-sha256sum.txt | |
- name: Create archive (windows) | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: | | |
tar.exe -a -c -f dum-${{ matrix.target }}.${{ matrix.archive }} ${{ matrix.output }} | |
sha256sum.exe dum-${{ matrix.target }}.${{ matrix.archive }} > dum-${{ matrix.target }}-sha256sum.txt | |
- name: Create archive (macos) | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
zip dum-${{ matrix.target }}.${{ matrix.archive }} ${{ matrix.output }} | |
sha256sum dum-${{ matrix.target }}.${{ matrix.archive }} > dum-${{ matrix.target }}-sha256sum.txt | |
- name: Upload artifacts archive | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dum-${{ matrix.target }}.${{ matrix.archive }} | |
path: dum-${{ matrix.target }}.${{ matrix.archive }} | |
- name: Upload artifacts checksum | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dum-${{ matrix.target }}-sha256sum.txt | |
path: dum-${{ matrix.target }}-sha256sum.txt | |
- name: Upload binary to release | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: dum-${{ matrix.target }}.${{ matrix.archive }} | |
asset_name: dum-${{ matrix.target }}.${{ matrix.archive }} | |
tag: ${{ github.ref }} | |
overwrite: true | |
- name: Upload checksum to release | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: dum-${{ matrix.target }}-sha256sum.txt | |
asset_name: dum-${{ matrix.target }}-sha256sum.txt | |
tag: ${{ github.ref }} | |
overwrite: true |