blob: 293c9ca0ac06726e5b395c52e39bc920efd03baa (
plain)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
# Copyright (C) 2021 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
name: Build and test
on:
pull_request:
push:
schedule:
- cron: '0 4 * * 5' # Every Friday at 4am
jobs:
build_and_test:
name: Build and test
strategy:
matrix:
include:
- name: Native Linux
cmake_args: >-
-DCMAKE_C_COMPILER=clang-13
-DCMAKE_CXX_COMPILER=clang++-13
cflags: >-
-fsanitize=address,undefined,leak
-fno-sanitize-recover=all
-fno-omit-frame-pointer
ldflags: >-
-fsanitize=address
- name: MingGW on Linux
cmake_args: >-
-DCMAKE_C_COMPILER=i686-w64-mingw32-gcc
-DCMAKE_CXX_COMPILER=i686-w64-mingw32-g++
-DCMAKE_SYSTEM_NAME=Windows
-DWIN32=ON
-DMINGW=ON
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.4.0
- name: Add Clang/LLVM repositories (Non-MinGW)
if: "${{ ! contains(matrix.cmake_args, 'mingw') }}"
run: |-
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main'
- name: Install build dependencies
run: |-
sudo apt-get update
sudo apt-get install --yes --no-install-recommends -V \
cmake \
doxygen \
graphviz \
lzip \
qhelpgenerator-qt5 \
qtchooser
- name: Install build dependencies (MinGW)
if: "${{ contains(matrix.cmake_args, 'mingw') }}"
run: |-
sudo dpkg --add-architecture i386 # for wine32
sudo apt-add-repository ppa:ondrej/php -y # due to libwine:i386 conflicts
sudo apt-get update # again, due to new architecture
sudo apt-get install --yes --no-install-recommends -V \
mingw-w64 \
wine-stable \
wine32
- name: Install build dependencies (Non-MinGW)
if: "${{ ! contains(matrix.cmake_args, 'mingw') }}"
run: |-
sudo apt-get install --yes --no-install-recommends -V \
clang-13 \
llvm-13
- name: Build, test and install
run: |-
set -x
sed 's,:,\n,g' <<<"${PATH}"
cmake --version
GTEST_VERSION=1.8.1
GTEST_PREFIX=~/.local/
wget https://github.com/google/googletest/archive/release-${GTEST_VERSION}.tar.gz
tar xf release-${GTEST_VERSION}.tar.gz
(
cd googletest-release-${GTEST_VERSION}/
# Silence warning "Compatibility with CMake < 2.8.12 will be removed"
find -name CMakeLists.txt -print -exec sed 's/cmake_minimum_required.*/cmake_minimum_required(VERSION 3.0.2)/' -i {} \;
cmake \
-DBUILD_SHARED_LIBS=ON \
-DCVF_VERSION=${GTEST_VERSION} \
-DCMAKE_INSTALL_PREFIX:PATH=${GTEST_PREFIX} \
${{ matrix.cmake_args }} \
.
make
make install
)
mkdir build
pushd build
compile_flags=(
-pipe
-O1
-g
${{ matrix.cflags }}
-Wall
-Wextra
-pedantic
)
CFLAGS="${compile_flags[*]} -std=c89"
CXXFLAGS="${compile_flags[*]} -std=c++98"
LDFLAGS='-g ${{ matrix.ldflags }}'
cmake_args=(
-DCMAKE_INSTALL_PREFIX:PATH=${GTEST_PREFIX}
-Wdev
-Werror=dev
-Wdeprecated
-Werror=deprecated
-DCMAKE_C_FLAGS="${CFLAGS}"
-DCMAKE_CXX_FLAGS="${CXXFLAGS}"
-DCMAKE_EXE_LINKER_FLAGS="${LDFLAGS}"
-DCMAKE_MODULE_LINKER_FLAGS="${LDFLAGS}"
-DCMAKE_SHARED_LINKER_FLAGS="${LDFLAGS}"
${{ matrix.cmake_args }}
-DURIPARSER_WARNINGS_AS_ERRORS=ON
)
cmake "${cmake_args[@]}" -DCMAKE_INSTALL_INCLUDEDIR=include123 ..
make VERBOSE=1 all
# NOTE: We need to copy some .dll files next to the
# Windows binaries so that they are ready to be executed
if [[ "${{ matrix.cmake_args }}" == *mingw* ]]; then
cp /usr/lib/gcc/i686-w64-mingw32/*-posix/libgcc_s_sjlj-1.dll ./
cp /usr/lib/gcc/i686-w64-mingw32/*-posix/libstdc++-6.dll ./
cp /usr/i686-w64-mingw32/lib/libwinpthread-1.dll ./
cp "${GTEST_PREFIX}"/bin/libgtest.dll ./
fi
make VERBOSE=1 test ARGS=--verbose
cat Testing/Temporary/LastTest.log
make install
make DESTDIR="${PWD}"/ROOT/ install
find ROOT | sort
./doc/release.sh
popd
pushd cmake/test_find_package
cmake "${cmake_args[@]}" .
make VERBOSE=1
if [[ "${{ matrix.cmake_args }}" == *mingw* ]]; then
cp "${GTEST_PREFIX}"/bin/liburiparser-1.dll ./
wine ./hello.exe
else
./hello
fi
popd
git fetch --tags --unshallow origin # for "git describe" in make-distcheck.sh
GTEST_PREFIX="${GTEST_PREFIX}" \
./make-distcheck.sh \
-DCMAKE_INSTALL_PREFIX:PATH=${GTEST_PREFIX} \
${{ matrix.cmake_args }}
! git status | fgrep -A100 'Untracked files:' # works best at the very end
|