build(deps): bump tonic from 0.12.2 to 0.12.3 #545
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
on: [push] | |
name: Build for reMarkable | |
jobs: | |
build_for_remarkable: | |
name: with musl | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
target: armv7-unknown-linux-musleabihf | |
default: true | |
components: rustfmt | |
- run: cargo fetch | |
- uses: actions-rs/cargo@v1 | |
with: | |
use-cross: true | |
command: build | |
args: --package=marauder --target=armv7-unknown-linux-musleabihf --release --bin whiteboard --locked --frozen --offline | |
whiteboard_hypercard: | |
name: with libc | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
target: armv7-unknown-linux-gnueabihf | |
default: true | |
components: rustfmt | |
- run: cargo fetch | |
- uses: actions-rs/cargo@v1 | |
with: | |
use-cross: true | |
command: build | |
args: --package=marauder --target=armv7-unknown-linux-gnueabihf --release --bin whiteboard --locked --frozen --offline | |
- uses: softprops/action-gh-release@v2 # TODO: https://github.com/actions/create-release/issues/29 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
./marauder/target/armv7-unknown-linux-gnueabihf/release/whiteboard | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |