Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bhuvaneshwarikanagaraj authored Sep 25, 2024
1 parent aacea91 commit 3ff732d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI for seL4

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Environment
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake git
- name: Configure Build
run: |
mkdir build
cd build
cmake ..
- name: Build Project
run: |
cd build
make
- name: Run Tests
run: |
cd build
make test

0 comments on commit 3ff732d

Please sign in to comment.