-
Notifications
You must be signed in to change notification settings - Fork 97
124 lines (114 loc) · 3.4 KB
/
Copy pathc-cpp.yml
File metadata and controls
124 lines (114 loc) · 3.4 KB
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
name: C/C++ CI
on:
push:
pull_request:
branches: [ "master" ]
jobs:
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- name: Linux GCC
os: ubuntu-latest
arch: x86_64
target: native
configure_args: ""
- name: Linux GCC (no SSE2/AVX2)
os: ubuntu-latest
arch: x86_64
target: native
configure_args: --disable-sse2 --disable-avx2
- name: Linux ARM GCC
os: ubuntu-24.04-arm
arch: aarch64
target: native
configure_args: ""
- name: Linux ARM GCC (no NEON)
os: ubuntu-24.04-arm
arch: aarch64
target: native
configure_args: --disable-neon
- name: Windows MinGW
os: windows-latest
arch: x86_64
target: native
configure_args: ""
- name: Windows cross (MinGW)
os: ubuntu-latest
arch: x86_64
target: windows-cross
configure_args: ""
- name: macOS ARM Clang
os: macos-latest
arch: arm64
target: native
configure_args: ""
steps:
- name: Configure Windows line endings
if: runner.os == 'Windows'
shell: pwsh
run: git config --global core.autocrlf input
- uses: actions/checkout@v6
- name: Set up MSYS2
if: runner.os == 'Windows'
uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
install: >-
autoconf
automake
bison
make
mingw-w64-ucrt-x86_64-gcc
- name: Install macOS build tools
if: runner.os == 'macOS'
env:
HOMEBREW_NO_AUTO_UPDATE: 1
run: brew install autoconf automake
- name: Install Windows cross tools
if: matrix.target == 'windows-cross'
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends --yes mingw-w64 wine
- name: Build and test
if: runner.os != 'Windows'
shell: bash
run: |
test "$(uname -m)" = "${{ matrix.arch }}"
uname -a
c++ --version
autoreconf -i
if test "${{ matrix.target }}" = "windows-cross"; then
CC=x86_64-w64-mingw32-gcc \
CXX=x86_64-w64-mingw32-g++ \
AR=x86_64-w64-mingw32-ar \
RANLIB=x86_64-w64-mingw32-ranlib \
LDFLAGS="-static -static-libgcc -static-libstdc++" \
./configure --host=x86_64-w64-mingw32 ${{ matrix.configure_args }}
else
./configure ${{ matrix.configure_args }}
fi
make -j2
make -C tests
if test "${{ matrix.target }}" = "windows-cross"; then
WINEARCH=win64 WINEDEBUG=-all WINEPREFIX="$RUNNER_TEMP/wine" \
wine ./tests/rtest.exe
else
./tests/rtest
fi
- name: Build and test
if: runner.os == 'Windows'
shell: msys2 {0}
run: |
test "$(uname -m)" = "${{ matrix.arch }}"
uname -a
c++ --version
autoreconf -i
./configure ${{ matrix.configure_args }}
make -j2
make -C tests
./tests/rtest