Skip to content

Bump itertools from 0.10.5 to 0.11.0 in /marauder #186

Bump itertools from 0.10.5 to 0.11.0 in /marauder

Bump itertools from 0.10.5 to 0.11.0 in /marauder #186

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@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: armv7-unknown-linux-musleabihf
override: true
components: rustfmt
# TODO: following fails with error occurred: Failed to find tool. Is `arm-linux-gnueabihf-gcc` installed?
- uses: marcopolo/cargo@master # TODO: - uses: actions-rs/cargo@v1 https://github.com/actions-rs/cargo/pull/59
with:
working-directory: marauder
use-cross: true
command: build
args: --target armv7-unknown-linux-musleabihf --release --bin whiteboard --locked #--frozen #--offline
# continue-on-error: true
whiteboard_hypercard:
name: with libc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: armv7-unknown-linux-gnueabihf
override: true
components: rustfmt
- uses: marcopolo/cargo@master # TODO: - uses: actions-rs/cargo@v1 https://github.com/actions-rs/cargo/pull/59
with:
working-directory: marauder
use-cross: true
command: build
args: --target armv7-unknown-linux-gnueabihf --release --bin whiteboard --locked #--frozen #--offline
- uses: softprops/action-gh-release@v1 # 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 }}