Skip to content

Build blazecli

Build blazecli #6

Workflow file for this run

name: Build blazecli
on:
workflow_call:
inputs:
upload-release:
description: 'The release to upload artifacts to, if any'
default: ''
required: false
type: string
workflow_dispatch:
jobs:
build:
name: Build blazecli
runs-on: ubuntu-latest
strategy:
matrix:
# Please update the test workflow cross-compile matrix when adding a new
# target here.
target: [
aarch64-linux-android,
arm-linux-androideabi,
armv7-linux-androideabi,
i686-unknown-linux-gnu,
x86_64-unknown-linux-musl,
]
steps:
- uses: actions/checkout@v4
- uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- run: |
cargo install --path=cli --root=. --target ${{ matrix.target }}
- uses: actions/upload-artifact@v4
with:
name: blazecli-${{ matrix.target }}
path: bin/blazecli
- if: ${{ inputs.upload-release != '' }}
name: Upload release asset
env:
GH_TOKEN: ${{ github.token }}
run: |
mv bin/blazecli blazecli-${{ matrix.target }}
gh release upload ${{ inputs.upload-release }} blazecli-${{ matrix.target }}