rust-raspberrypi-OS-tutorials/.github/workflows/build_rpi4.yml
Andre Richter c4f9432e13
Remove xbuild. Use upstream aarch64 rust-std 🎉 🦀
`rustup target add aarch64-unknown-none-softfloat` is now a thing.
It is no longer required to build rust-std on-demand with `xbuild`.

This reduces compile-times significantly.
2020-04-07 23:17:48 +02:00

46 lines
974 B
YAML

name: BSP-RPi4
on:
push:
branches:
- master
paths-ignore:
- 'utils/**'
- 'doc/**'
- 'docker/**'
pull_request:
branches:
- master
paths-ignore:
- 'utils/**'
- 'doc/**'
- 'docker/**'
schedule:
- cron: '0 5 * * *'
jobs:
build:
name: Build kernels
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.x
uses: actions/setup-ruby@v1
with:
ruby-version: 2.x
- name: Set up Rust nightly
run: |
rustup self update
rustup toolchain install nightly --component llvm-tools-preview
rustup default nightly
rustup target add aarch64-unknown-none-softfloat
cargo install cargo-binutils
- name: Set up Ruby
run: |
gem install bundler
bundle install --retry 3 --without uart
- name: Make
run: |
BSP=rpi4 bundle exec ruby utils/devtool.rb make