-
-
Notifications
You must be signed in to change notification settings - Fork 134
145 lines (141 loc) · 5.9 KB
/
ci.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
name: Continuous Integration
on: [pull_request, merge_group]
jobs:
build-mlibc:
strategy:
matrix:
arch: [x86_64, riscv64, aarch64, x86, m68k]
builds: [mlibc, mlibc-static, mlibc-shared, mlibc-ansi-only, mlibc-headers-only]
compiler: [gcc, clang]
exclude:
- compiler: clang
include:
- arch: x86_64
builds: mlibc
compiler: clang
name: Build mlibc
runs-on: ubuntu-20.04
container:
image: ghcr.io/managarm/mlibc-crossers:latest
steps:
- name: Install prerequisites
run: |
apt-get update
apt-get install -y ninja-build qemu-user \
python3-setuptools python3-jsonschema \
python3-pexpect python3-pip netbase clang lld
pip install --break-system-packages -U xbstrap pyexpect meson
- name: Prepare directories
run: |
mkdir src/
mkdir src/mlibc/
mkdir build/
- name: Checkout
uses: actions/checkout@v2
with:
path: src/mlibc/
- name: Prepare src/
run: |
cp mlibc/ci/bootstrap.yml .
touch mlibc/checkedout.xbstrap
working-directory: src/
- name: Prepare build/
run: |
cat > bootstrap-site.yml << EOF
define_options:
arch: ${{matrix.arch}}
compiler: ${{matrix.compiler}}
EOF
xbstrap init ../src
working-directory: build/
- name: Build mlibc
run: 'xbstrap install ${{matrix.builds}}'
working-directory: build/
- name: Check public headers conform to C89/C99/C11
if: ${{matrix.builds == 'mlibc-headers-only'}}
working-directory: build/
run: |
GCC_ARCH="${{matrix.arch}}"
case "$GCC_ARCH" in
"x86")
GCC_ARCH="i686"
;;
esac
ALL_HDRS="packages/${{matrix.builds}}/usr/include/**.h"
GCC_ARGS="$GCC_ARCH-linux-mlibc-gcc -x c -S /dev/null -o /dev/null -I packages/${{matrix.builds}}/usr/include -I packages/linux-headers/usr/include -nostdlib -Werror -Wpedantic -Wsystem-headers"
# For C89, exclude complex.h, and -Wlong-long
printf -- '-include\0%s\0' $ALL_HDRS | sed 's/complex.h/stdio.h/' | xargs -0 $GCC_ARGS -std=c89 -Wno-long-long
printf -- '-include\0%s\0' $ALL_HDRS | xargs -0 $GCC_ARGS -std=c99
printf -- '-include\0%s\0' $ALL_HDRS | xargs -0 $GCC_ARGS -std=c11
- name: Test mlibc
run: 'meson test -v -C pkg-builds/${{matrix.builds}}'
working-directory: build/
compile-sysdeps:
strategy:
matrix:
sysdeps: [dripos, lemon, aero, ironclad, lyre, keyronex, managarm, vinix, astral]
name: Compile sysdeps
runs-on: ubuntu-22.04
container:
image: ghcr.io/managarm/mlibc-crossers:latest
steps:
- name: Install prerequisites
run: |
apt-get update
apt-get install -y ninja-build qemu-user \
python3-setuptools python3-jsonschema \
python3-pip
pip install --break-system-packages -U xbstrap meson
- if: ${{ matrix.sysdeps == 'managarm' }}
name: Checkout bootstrap-managarm
uses: actions/checkout@v2
with:
repository: 'managarm/bootstrap-managarm'
path: src/
- name: Checkout
uses: actions/checkout@v2
with:
path: src/mlibc/
- if: ${{ matrix.sysdeps == 'managarm' }}
name: Clone managarm/managarm
uses: actions/checkout@v4
with:
repository: 'managarm/managarm'
path: 'src/mlibc/subprojects/managarm'
- if: ${{ matrix.sysdeps == 'managarm' }}
name: Clone managarm/bragi
uses: actions/checkout@v4
with:
repository: 'managarm/bragi'
path: 'src/mlibc/subprojects/bragi'
- if: ${{ matrix.sysdeps == 'managarm' }}
name: Install bragi
run: |
pip install --break-system-packages -U bragi
- name: Set up linux kernel headers
run: |
mkdir -p build/mlibc/
cp src/mlibc/ci/bootstrap.yml src/
(
cd build
xbstrap init ../src
xbstrap install linux-headers
)
- if: ${{ matrix.sysdeps == 'managarm' }}
name: Set up drm headers
run: |
xbstrap install libdrm-headers
ln -sv $(pwd)/packages/libdrm-headers/usr/src/libdrm-headers ../src/mlibc/subprojects/
working-directory: build/
- name: Compile sysdeps
run: |
meson setup \
"-Dc_args=['-fno-stack-protector', '-U__linux__', '-Wno-error=maybe-uninitialized', '-D__${{matrix.sysdeps}}__']" \
"-Dcpp_args=['-fno-stack-protector', '-U__linux__', '-Wno-error=maybe-uninitialized', '-D__${{matrix.sysdeps}}__']" \
"-Dbuild_tests=true" \
"-Db_sanitize=undefined" \
"-Dlinux_kernel_headers=$(pwd)/packages/linux-headers/usr/include" \
--cross-file ../src/mlibc/ci/${{matrix.sysdeps}}.cross-file compile-${{matrix.sysdeps}} \
"../src/mlibc/"
ninja -C compile-${{matrix.sysdeps}}
working-directory: build/