-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |