GCC fix #38
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: Linux Build & Unit Tests | |
on: [push] | |
jobs: | |
build: | |
name: unit-tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: install tools | |
run: | | |
sudo apt install cmake | |
sudo apt install lcov | |
- name: build & run tests | |
run: | | |
cd .. | |
git clone https://github.com/catchorg/Catch2.git | |
cd OleanderStemmingLibrary/tests | |
cmake ./ | |
make -j4 | |
cd bin | |
./OleanderStemTestRunner --reporter JUnit::out=Stem-junit.xml | |
cat Stem-junit.xml | |
errors=$(cat Stem-junit.xml | grep -Po '(errors)="\K[^"]*') | |
failures=$(cat Stem-junit.xml | grep -Po '(failures)="\K[^"]*') | |
echo "Error count is: ${errors}" | |
echo "Failure count is: ${failures}" | |
if [ "$errors" -gt 0 ]; then | |
exit 1 | |
fi | |
if [ "$failures" -gt 0 ]; then | |
exit 1 | |
fi |