-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 1.03 KB
/
unit-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Linux 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 i18n-check/tests
cmake ./
make -j4
cd bin
./i18nTestRunner --reporter JUnit::out=i18n-junit.xml
cat i18n-junit.xml
errors=$(cat i18n-junit.xml | grep -Po '(errors)="\K[^"]*')
failures=$(cat i18n-junit.xml | grep -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