Merge pull request #588 from betrusted-io/mpwevb-cam #961
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: | |
branches: | |
- main | |
name: Build xous-core | |
jobs: | |
build: | |
name: Setup Rust | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
task: ["hosted-ci", "renode-image"] | |
steps: | |
- name: Install Ubuntu dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y libxkbcommon-dev | |
- name: Update to latest toolchain | |
run: rustup update | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Fetch tags | |
run: git fetch --prune --unshallow --tags | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install RISC-V toolkit | |
run: cargo xtask install-toolkit --force --no-verify | |
- name: Clean out old target directory (in case of libstd change) | |
run: rm -rf target/* | |
- name: Build CI targets | |
run: cargo xtask ${{ matrix.task }} --no-verify |