-
Notifications
You must be signed in to change notification settings - Fork 17
127 lines (114 loc) · 3.36 KB
/
make.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
name: Continuous Integration
on: [push, pull_request]
jobs:
build_and_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: configure
run: |
LDFLAGS="$CFLAGS" ./autogen.sh \
--enable-coverage
- name: make
run: make -j
- name: make check
run: |
make -j check || (cat test/test-suite.log; false)
- name: Generate coverage reports
run: |
./gencov lib/*.c src/*.c
mkdir artifacts
tar cf - lib/*.gcov src/*.gcov | tar -C artifacts -xf -
- name: Upload coverage-annotated source files
uses: actions/upload-artifact@v1
with:
path: "artifacts"
name: coverage_reports
ubsan_build:
runs-on: ubuntu-latest
env:
CC: clang
# TODO: Add -fsanitize=address and memory too.
CFLAGS: "-fsanitize=undefined
-fno-omit-frame-pointer
-fno-sanitize-recover=all
-fno-sanitize=shift-base"
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
sudo apt -q install valgrind
- name: configure
run: |
LDFLAGS="$CFLAGS" ./autogen.sh
- name: make check
run: |
make -j check || (cat test/test-suite.log; false)
windows_x86_build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- name: Setup msys2
uses: msys2/setup-msys2@v2
with:
msystem: MINGW32
update: true
install: base-devel git autoconf automake libtool groff zip dos2unix mingw-w64-i686-gcc
- uses: actions/checkout@v4
- name: Find Git version
id: version
run: |
export VERSION=$(git rev-parse --short HEAD)
echo "VERSION=$VERSION-win32" >> $GITHUB_OUTPUT
# TODO: --disable-shared is here because pkg/win32 doesn't package the dll..
- name: configure
run: ./autogen.sh --disable-shared --host=i686-w64-mingw32
- name: make
run: make -j
# TODO: Tests are not currently run on Windows
- name: Make windows package
run: |
cd pkg/win32
make
- name: Upload build
uses: actions/upload-artifact@v1
with:
path: "pkg/win32/staging"
name: lhasa-${{steps.version.outputs.VERSION}}
windows_x64_build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- name: Setup msys2
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: base-devel git autoconf automake libtool groff zip dos2unix mingw-w64-x86_64-gcc
- uses: actions/checkout@v4
- name: Find Git version
id: version
run: |
export VERSION=$(git rev-parse --short HEAD)
echo "VERSION=$VERSION-win64" >> $GITHUB_OUTPUT
# TODO: --disable-shared is here because pkg/win64 doesn't package the dll..
- name: configure
run: ./autogen.sh --disable-shared --host=x86_64-w64-mingw32
- name: make
run: make -j
# TODO: Tests are not currently run on Windows
# TODO: win64 packaging requires updated pkg directory
#- name: Make windows package
# run: |
# cd pkg/win64
# make
#- name: Upload build
# uses: actions/upload-artifact@v1
# with:
# path: "pkg/win64/staging"
# name: lhasa-${{steps.version.outputs.VERSION}}