Merge pull request #124 from gaborhadhazy/main #86
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
name: CI | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
build_linux: | |
name: Ubuntu build, Check, and TEST | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download LLVM | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x llvm.sh | |
sudo ./llvm.sh 17 | |
echo "/usr/lib/llvm-17/bin" >> $GITHUB_PATH | |
- name: Download GTEST | |
run: | | |
git clone https://github.com/google/googletest.git -b v1.14.0 | |
cd googletest | |
mkdir build | |
cd build | |
cmake .. | |
make | |
sudo make install | |
- name: build donsus | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=DEBUG -S ../ -B . | |
make | |
cd donsus_test | |
./donsus_test |