-
Notifications
You must be signed in to change notification settings - Fork 216
38 lines (33 loc) · 988 Bytes
/
tests.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
name: Hana tests
permissions:
contents: read
on: [push, pull_request]
jobs:
clang_latest:
name: Clang Latest
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: sudo apt-get install clang-17 cmake ninja
- name: Configure CMake
run: mkdir build && cmake -S . -B build -G Ninja
- name: Run the tests
run: cmake --build build --target check
gcc_latest:
name: GCC Latest
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: sudo apt-get install gcc-13 cmake ninja
- name: Configure CMake
run: mkdir build && cmake -S . -B build -G Ninja
- name: Run the tests
run: cmake --build build --target check
apple_clang_latest:
name: Apple Clang Latest
runs-on: macos-latest
steps:
- name: Configure CMake
run: mkdir build && cmake -S . -B build -G Ninja
- name: Run the tests
run: cmake --build build --target check