Bump itertools from 0.10.5 to 0.11.0 in /marauder #186
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@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 }} |