Skip to content

Fix small mapping issues, update toolchain #180

Fix small mapping issues, update toolchain

Fix small mapping issues, update toolchain #180

Workflow file for this run

name: xtask
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo xtask test --verbose
build-x86_64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo xtask build --arch x86-64 --verbose
build-aarch64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo xtask build --arch aarch64 --verbose
build-riscv64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo xtask build --arch riscv64 --verbose