chore: updating README.md #57
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: Pandora CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt update && sudo apt install cmake | |
- name: Check out code for the build | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
# TODO: add format step back (last PR before release) | |
# - name: "Format" | |
# run: | | |
# find src/ include/ test/ -type f \( -iname \*.h -o -iname \*.cpp \) | xargs -I _ clang-format -style=file -output-replacements-xml _ | grep -c "<replacement " >/dev/null | |
# if [ $? -ne 1 ]; then echo "Not all source and header files are formatted with clang-format"; exit 1; fi | |
- name: Build and test release build | |
run: | | |
mkdir build_release && cd build_release | |
cmake -DCMAKE_BUILD_TYPE=Release -DHUNTER_JOBS_NUMBER=2 .. | |
make -j2 | |
# ctest -V | |
./pandora --help | |
cd .. | |
- name: Build and test debug build | |
run: | | |
mkdir build_debug && cd build_debug | |
cmake -DCMAKE_BUILD_TYPE=Debug -DHUNTER_JOBS_NUMBER=2 .. | |
make -j2 | |
# ctest -V | |
./pandora --help | |
cd .. |