Test #5
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: Build | |
on: | |
push: | |
jobs: | |
build: | |
name: Build statically linked binary | |
runs-on: ubuntu-latest | |
steps: | |
#- uses: actions/checkout@v4 | |
#- name: Install dependencies | |
# run: sudo apt-get install musl-tools | |
#- uses: actions-rs/toolchain@v1 | |
# with: | |
# toolchain: stable | |
# profile: minimal | |
# override: true | |
# target: aarch64-linux-android | |
#- run: | | |
# cargo install --path=cli --root=. --target aarch64-linux-android | |
# strip bin/blazecli | |
#- uses: actions/upload-artifact@v3 | |
# with: | |
# name: blazecli | |
# path: bin/blazecli | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
target: aarch64-linux-android | |
- run: cargo install --path=cli --root=. --target aarch64-linux-android |