forked from pinard/Recode
-
-
Notifications
You must be signed in to change notification settings - Fork 10
72 lines (70 loc) · 2.85 KB
/
c-cpp.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
name: C/C++ CI
on: [ push, pull_request ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
include:
- os: ubuntu-latest
shell: bash
- os: macos-latest
shell: bash
- os: windows-latest
sys: mingw64
arch: x86_64
shell: msys2
- os: windows-latest
sys: mingw32
arch: i686
shell: msys2
runs-on: ${{ matrix.os }}
defaults:
run:
shell: ${{ matrix.shell }} {0}
steps:
- uses: msys2/setup-msys2@v2
if: ${{ matrix.os == 'windows-latest' }}
with:
release: false
msystem: ${{matrix.sys}}
install: >-
patch git groff help2man rsync texinfo flex
mingw-w64-${{matrix.arch}}-autotools
mingw-w64-${{matrix.arch}}-gcc
mingw-w64-${{matrix.arch}}-python3
mingw-w64-${{matrix.arch}}-python-setuptools
mingw-w64-${{matrix.arch}}-cython
- uses: actions/checkout@v3
with:
submodules: true
- name: Install dependencies (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get -y install python3 cython3 flex help2man autopoint texinfo gettext
- name: Install dependencies (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install autoconf automake help2man [email protected] python-setuptools cython flex texinfo
# Prepend optional brew binary directories to PATH
echo "$(brew --prefix)/opt/gnu-tar/libexec/gnubin:$(brew --prefix)/opt/flex/bin:$(brew --prefix)/opt/m4/bin:$(brew --prefix)/opt/texinfo/bin:$(brew --prefix)/opt/gettext/bin:$(brew --prefix)/opt/[email protected]/libexec/bin:$(brew --prefix)/opt/cython/bin" >> $GITHUB_PATH
- name: Set up environment (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
echo "ASAN=yes" >> $GITHUB_ENV
echo "LSAN_OPTIONS=verbosity=1:log_threads=1" >> $GITHUB_ENV
- name: Set up environment (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
echo "LDFLAGS=-L/usr/local/opt/flex/lib -L/usr/local/opt/gettext/lib" >> $GITHUB_ENV
echo "CPPFLAGS=-I/usr/local/opt/flex/include" >> $GITHUB_ENV
- name: Set up environment (Windows)
if: ${{ matrix.os == 'windows-latest' }}
run: |
# Define _POSIX to get a full set of POSIX signal names from signal.h on mingw
echo "CPPFLAGS=-D_POSIX" >> $GITHUB_ENV
- name: Build
run: |
./bootstrap
if [[ "$ASAN" == "yes" ]]; then ./configure --enable-silent-rules CFLAGS="-g3 -fsanitize=address -fsanitize=undefined" LDFLAGS="-fsanitize=address -fsanitize=undefined" TESTS_ENVIRONMENT_EXTRA="LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/11/libasan.so PYTHONMALLOC=malloc"; else ./configure --enable-silent-rules; fi
make check
make distcheck