mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
aa0e194c75
Latest nightly broke a dependency. Need to wait for it to be fixed. Pin the toolchain for now.
43 lines
840 B
YAML
43 lines
840 B
YAML
name: Xtra-Tests
|
|
|
|
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: Run xtra tests
|
|
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: |
|
|
cargo install cargo-binutils
|
|
- name: Set up Ruby
|
|
run: |
|
|
gem install bundler
|
|
bundle config set without 'uart'
|
|
bundle install --retry 3
|
|
- name: Make all
|
|
run: |
|
|
bundle exec ruby utils/devtool.rb test_xtra
|