2021-04-29 22:03:55 +00:00
|
|
|
name: Xtra-Tests
|
|
|
|
|
|
|
|
on:
|
2023-09-15 12:22:15 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths-ignore:
|
|
|
|
- "utils/**"
|
|
|
|
- "doc/**"
|
|
|
|
- "docker/**"
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths-ignore:
|
|
|
|
- "utils/**"
|
|
|
|
- "doc/**"
|
|
|
|
- "docker/**"
|
|
|
|
schedule:
|
|
|
|
- cron: "0 5 * * *"
|
2021-04-29 22:03:55 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-09-15 12:22:15 +00:00
|
|
|
build:
|
|
|
|
name: Run xtra tests
|
|
|
|
runs-on: ubuntu-22.04
|
2021-04-29 22:03:55 +00:00
|
|
|
|
2023-09-15 12:22:15 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
- 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: Run
|
|
|
|
run: |
|
|
|
|
bundle exec ruby utils/devtool.rb make_xtra
|