Skip to content

Commit

Permalink
test: test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
yfblock committed Jul 3, 2024
1 parent 59b54d5 commit 6d25277
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Test Repository

on:
workflow_dispatch:
push:

jobs:
test:
runs-on: ubuntu-latest
container:
image: trustworthysystems/sel4
volumes:
- .:/code
steps:
- uses: actions/checkout@v4
with:
path: rel4_kernel
- uses: actions/checkout@v4
with:
ref: 'mi_dev'
path: kernel
repository: rel4team/seL4_c_impl
- name: Install generaic tools
run: apt update && apt install -y wget
- name: setup rust toolchain
run: curl -sSf https://sh.rustup.rs | bash -s -- -y --no-modify-path \
--default-toolchain nightly-2024-02-01 \
--component rust-src
- name: Make rel4_kernel
run: cd rel4_kernel && make run
- name: Build kernel
run: cd kernel && cmake cmake -C kernel-settings-riscv64.cmake \  ✔
-G Ninja \
-S . \
-B build;
- name: Build Kernel
run: cd kernel && ninja -C build

0 comments on commit 6d25277

Please sign in to comment.