-
Notifications
You must be signed in to change notification settings - Fork 2
107 lines (104 loc) · 3.84 KB
/
testsuite.yaml
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
name: Test suite
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5'
jobs:
gcc:
runs-on: ubuntu-latest
strategy:
matrix:
version: [9, 10, 11, 12, 13]
use_native_chk: [true, false]
steps:
- name: Checking out the code
uses: actions/checkout@v3
- name: Cache musl toolchain
uses: actions/cache@v3
id: cache-musl
with:
path: x86_64-linux-musl-native
key: musl
- name: Downloading musl-based toolchain
if: steps.cache-musl.outputs.cache-hit != 'true'
run: wget --quiet https://musl.cc/x86_64-linux-musl-native.tgz
- name: Extracting musl-based toolchain
if: steps.cache-musl.outputs.cache-hit != 'true'
run: tar xzf ./x86_64-linux-musl-native.tgz
- name: Setting up gcc version
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt install -y --no-install-recommends gcc-${{ matrix.version }} g++-${{ matrix.version }}
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.version }} 100
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.version }} 100
- name: Build with native chk
if: ${{ matrix.use_native_chk == true }}
run: make CFLAGS=-DUSE_NATIVE_CHK -C tests gcc
- name: Build without native chk, and run the testsuite
if: ${{ matrix.use_native_chk == false }}
shell: bash
run: |
make -C tests clean gcc run > ./results.txt
grep -zvq 'FAIL' ./results.txt
clang:
runs-on: ubuntu-latest
strategy:
matrix:
version: [13, 14, 15]
use_native_chk: [true, false]
steps:
- name: Checking out the code
uses: actions/checkout@v3
- name: Cache musl toolchain
uses: actions/cache@v3
id: cache-musl
with:
path: x86_64-linux-musl-native
key: musl
- name: Downloading musl-based toolchain
if: steps.cache-musl.outputs.cache-hit != 'true'
run: wget --quiet https://musl.cc/x86_64-linux-musl-native.tgz
- name: Extracting musl-based toolchain
if: steps.cache-musl.outputs.cache-hit != 'true'
run: tar xzf ./x86_64-linux-musl-native.tgz
- name: Setting up clang version
run: |
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${{ matrix.version }} 100
- name: Build with native chk
if: ${{ matrix.use_native_chk == true }}
run: make CFLAGS=-DUSE_NATIVE_CHK -C tests clang
- name: Building and running without native chk
if: ${{ matrix.use_native_chk == false }}
shell: bash
run: |
make -C tests clean clang run > ./results.txt
grep -zvq 'FAIL' ./results.txt
c_versions:
runs-on: ubuntu-latest
strategy:
matrix:
version: ["c89", "c99", "c11", "c17"]
steps:
- name: Checking out the code
uses: actions/checkout@v3
- name: Cache musl toolchain
uses: actions/cache@v3
id: cache-musl
with:
path: x86_64-linux-musl-native
key: musl
- name: Downloading musl-based toolchain
if: steps.cache-musl.outputs.cache-hit != 'true'
run: wget --quiet https://musl.cc/x86_64-linux-musl-native.tgz
- name: Extracting musl-based toolchain
if: steps.cache-musl.outputs.cache-hit != 'true'
run: tar xzf ./x86_64-linux-musl-native.tgz
- name: Building with clang
shell: bash
run: make CFLAGS=-std=${{ matrix.version }} -C tests clean clang
- name: Building with gcc
shell: bash
run: make CFLAGS=-std=${{ matrix.version }} -C tests clean gcc