Skip to content

build(deps): bump serde_json from 1.0.120 to 1.0.121 #507

build(deps): bump serde_json from 1.0.120 to 1.0.121

build(deps): bump serde_json from 1.0.120 to 1.0.121 #507

Workflow file for this run

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 }}