Skip to content

Commit 3d5f2d1

Browse files
authored
Update ci.yml
1 parent e5dbe35 commit 3d5f2d1

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

Diff for: .github/workflows/ci.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,11 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- name: Install dependencies
1313
run: sudo apt-get install -y --no-install-recommends libcmocka-dev
14+
- name: Compile as C++
15+
run: g++ -fsyntax-only -xc++ cmp.c
1416
- name: Build library
1517
run: make -j4
1618
- name: Build test programs
1719
run: make testprogs
18-
- name: Run unit tests
19-
run: make unittest
20-
- name: Run ASAN tests
21-
run: make addrtest
22-
- name: Run MSAN tests
23-
run: make memtest
24-
- name: Run UBSAN tests
25-
run: make ubtest
26-
- name: Run tests without FPU (no float)
27-
run: make nofloattest
20+
- name: Run tests
21+
run: make test

0 commit comments

Comments
 (0)