-
Notifications
You must be signed in to change notification settings - Fork 5
91 lines (69 loc) · 2.05 KB
/
ci.yml
File metadata and controls
91 lines (69 loc) · 2.05 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: StelluxOS Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Environment
run: sudo apt-get update
- name: Install Dependencies
run: make install-dependencies
- name: Build Stellux OS image (kernel only, no userland)
run: make image NO_USERLAND_BUILD=1
- name: Verify that kernel ELF is created
run: |
if [ ! -f build/stellux ]; then
echo "Kernel binary was not found!"
exit 1
fi
- name: Verify that StelluxOS image is created
run: |
if [ ! -f build/image/stellux.img ]; then
echo "Stellux image was not found!"
exit 1
fi
- name: Clean build
run: make clean
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Environment
run: sudo apt-get update
- name: Install Dependencies
run: make install-dependencies
- name: Build and Execute Unit Tests
run: make execute-unit-tests
privilege-violation-analysis:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Environment
run: sudo apt-get update
- name: Install Dependencies
run: make install-dependencies
- name: Install Python
run: |
sudo apt-get install -y python3 python3-pip
pip3 install -r ./tools/privilege_violation_analyzer/requirements.txt
- name: Build Stellux OS image (kernel only, no userland)
run: make image COMPILER_OPTIMIZATION_LEVEL=0 NO_USERLAND_BUILD=1
- name: Verify that kernel ELF is created
run: |
if [ ! -f build/stellux ]; then
echo "Kernel binary was not found!"
exit 1
fi
- name: Perform Privilege Violation Analysis
run: |
python3 ./tools/privilege_violation_analyzer/main.py build/stellux