Update test case #195
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: macOS Unit Tests | |
on: [push] | |
jobs: | |
build: | |
name: unit-tests | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: build & run tests | |
run: | | |
brew install grep | |
cd .. | |
git clone https://github.com/catchorg/Catch2.git | |
cd i18n-check/tests | |
cmake ./ | |
make -j4 | |
cd bin | |
./i18nTestRunner --reporter JUnit::out=i18n-junit.xml | |
cat i18n-junit.xml | |
errors=$(cat i18n-junit.xml | ggrep -Po '(errors)="\K[^"]*') | |
failures=$(cat i18n-junit.xml | ggrep -Po '(failures)="\K[^"]*') | |
if [ "$errors" -gt 0 ]; then | |
echo "Error count is: ${errors}" | |
exit 1 | |
fi | |
if [ "$failures" -gt 0 ]; then | |
echo "Failure count is: ${failures}" | |
exit 1 | |
fi |