-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (54 loc) · 1.52 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
on:
push:
branches:
- rrOSt-testing
pull_request:
branches:
- rrOSt-testing
jobs:
test_os:
name: Run all tests on the OS
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
working-directory: .
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.3'
bundler: '2.4.19'
bundler-cache: false
rubygems: '3.2.22'
# Setup Ruby Environment
- name: Set Bundler Path
run: bundle config set --local path '.vendor/bundle'
- name: Tell Bundler not to use development?
run: bundle config set --local without 'development'
- name: Install Ruby Gems
run: bundle install
# Setup Cargo Environment
- name: Install latest Nightly Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: false
components: rust-src,llvm-tools-preview, rustfmt, clippy
- name: Install OS target
run: rustup target add aarch64-unknown-none-softfloat
- name: Install needed crates
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-binutils rustfilt
# Run All OS Tests
- name: Run boot test
run: make test_boot
working-directory: ./os
- name: Run unit tests
run: make test_unit
working-directory: ./os
- name: Run integration tests
run: make test_integration
working-directory: ./os