-
Notifications
You must be signed in to change notification settings - Fork 12
50 lines (45 loc) · 1.52 KB
/
macos-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
38
39
40
41
42
43
44
45
46
47
48
49
50
name: macOS Build & Unit Tests
on: [push]
jobs:
build:
name: unit-tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: build & run tests
run: |
brew install grep
cd ..
git clone https://github.com/catchorg/Catch2.git
cd tinyexpr-plusplus/tests
cmake ./
make -j4
cd bin
./TETestRunner --reporter JUnit::out=TE-junit.xml
cat TE-junit.xml
errors=$(cat TE-junit.xml | ggrep -Po '(errors)="\K[^"]*')
failures=$(cat TE-junit.xml | ggrep -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
cd ..
cmake -DTE_POW_FROM_RIGHT=1 ./
make -j4
cd bin
./TETestRunner --reporter JUnit::out=TE-junit2.xml
cat TE-junit2.xml
errors=$(cat TE-junit2.xml | ggrep -Po '(errors)="\K[^"]*')
failures=$(cat TE-junit2.xml | ggrep -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