mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
name: BSP-RPi3
|
|
|
|
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-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Ruby 2.x
|
|
uses: actions/setup-ruby@v1
|
|
with:
|
|
ruby-version: "2.7"
|
|
- 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 config set without 'uart'
|
|
bundle install --retry 3
|
|
- name: Make
|
|
run: |
|
|
BSP=rpi3 bundle exec ruby utils/devtool.rb make
|