-
Notifications
You must be signed in to change notification settings - Fork 137
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
39 changed files
with
2,331 additions
and
1,769 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,47 @@ | ||
name: clang-19 | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] # Run on all branches | ||
pull_request: | ||
branches: [ '**' ] # Run on all branches | ||
|
||
jobs: | ||
build-ubuntu-clang: | ||
name: Build on Ubuntu Latest with Clang-19 | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Set up Locales | ||
run: | | ||
sudo apt update | ||
sudo apt install -y locales | ||
sudo locale-gen de_DE.UTF-8 en_US.UTF-8 | ||
sudo update-locale LANG=en_US.UTF-8 | ||
- name: Add LLVM Official Repository | ||
run: | | ||
sudo apt install -y software-properties-common wget | ||
wget https://apt.llvm.org/llvm.sh | ||
chmod +x llvm.sh | ||
sudo ./llvm.sh 19 # Install Clang-19 (latest stable) | ||
- name: Install Latest Clang | ||
run: | | ||
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-19 90 | ||
clang++ --version | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Configure CMake | ||
run: | | ||
cmake -B build -DCMAKE_CXX_COMPILER=clang++-19 | ||
- name: Build | ||
run: | | ||
cmake --build build --config Release | ||
- name: Run Tests | ||
working-directory: build | ||
run: ctest --output-on-failure |
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,46 @@ | ||
name: g++-13 | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] # Run on all branches | ||
pull_request: | ||
branches: [ '**' ] # Run on all branches | ||
|
||
jobs: | ||
build-ubuntu-gcc: | ||
name: Build on Ubuntu Latest with GCC-13 | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Set up Locales | ||
run: | | ||
sudo apt update | ||
sudo apt install -y locales | ||
sudo locale-gen de_DE.UTF-8 en_US.UTF-8 | ||
sudo update-locale LANG=en_US.UTF-8 | ||
- name: Add GCC Toolchain PPA | ||
run: | | ||
sudo apt install -y software-properties-common | ||
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y | ||
sudo apt update | ||
- name: Install GCC-13 | ||
run: | | ||
sudo apt install -y g++-13 | ||
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 90 | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Configure CMake | ||
run: | | ||
cmake -B build -DCMAKE_CXX_COMPILER=g++-13 | ||
- name: Build | ||
run: | | ||
cmake --build build --config Release | ||
- name: Run Tests | ||
working-directory: build | ||
run: ctest --output-on-failure |
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,28 @@ | ||
name: msvc-2022 | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] # Run on all branches | ||
pull_request: | ||
branches: [ '**' ] # Run on all branches | ||
|
||
jobs: | ||
build-windows: | ||
name: Build on Windows with Visual Studio 2022 | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Configure CMake | ||
run: | | ||
cmake -B build -G "Visual Studio 17 2022" -A x64 | ||
- name: Build | ||
run: | | ||
cmake --build build --config Release | ||
- name: Run Tests | ||
working-directory: build | ||
run: ctest -C Release --output-on-failure |
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.