Skip to content

Build some userspace tasks on the D1 #363

Build some userspace tasks on the D1

Build some userspace tasks on the D1 #363

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- PLATFORM: x64
- PLATFORM: rv64_virt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libudev-dev
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
default: true
profile: minimal
components: rust-src
- name: Build
run: cargo xtask dist -p ${{ matrix.platform }}