Skip to content

Fixed the test action? #2

Fixed the test action?

Fixed the test action? #2

Workflow file for this run

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 needed crates
run: cargo install 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