forked from aria2/aria2
-
Notifications
You must be signed in to change notification settings - Fork 2
76 lines (72 loc) · 2.12 KB
/
build.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
name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-22.04, macos-11]
compiler: [gcc, clang]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Linux setup
if: runner.os == 'Linux'
run: |
sudo apt-get install \
g++-11 \
clang-12 \
autoconf \
automake \
autotools-dev \
autopoint \
libtool \
pkg-config \
libssl-dev \
libc-ares-dev \
zlib1g-dev \
libsqlite3-dev \
libssh2-1-dev \
libcppunit-dev
- name: MacOS setup
if: runner.os == 'macOS'
run: |
brew install cppunit gettext openssl libssh2 c-ares sqlite3 \
autoconf automake pkg-config libtool
- name: Setup clang (Linux)
if: runner.os == 'Linux' && matrix.compiler == 'clang'
run: |
echo 'CC=clang-12' >> $GITHUB_ENV
echo 'CXX=clang++-12' >> $GITHUB_ENV
- name: Setup clang (MacOS)
if: runner.os == 'macOS' && matrix.compiler == 'clang'
run: |
echo 'CC=clang' >> $GITHUB_ENV
echo 'CXX=clang++' >> $GITHUB_ENV
- name: Setup gcc (Linux)
if: runner.os == 'Linux' && matrix.compiler == 'gcc'
run: |
echo 'CC=gcc-11' >> $GITHUB_ENV
echo 'CXX=g++-11' >> $GITHUB_ENV
- name: Setup gcc (MacOS)
if: runner.os == 'macOS' && matrix.compiler == 'gcc'
run: |
echo 'CC=gcc' >> $GITHUB_ENV
echo 'CXX=g++' >> $GITHUB_ENV
- name: Libtool
run: |
autoreconf -i
- name: Configure autotools (Linux)
if: runner.os == 'Linux'
run: |
./configure \
CPPFLAGS="-fsanitize=address" LDFLAGS="-fsanitize=address"
- name: Configure autotools (macOS)
if: runner.os == 'macOS'
run: |
./configure \
--without-openssl --without-gnutls --with-appletls \
--disable-nls \
CPPFLAGS="-fsanitize=address" LDFLAGS="-fsanitize=address"
- name: Build aria2
run: |
make -j"$(nproc 2> /dev/null || sysctl -n hw.ncpu)" check