Build and run tests on Circle CI too

Add more steps to the build job.
This commit is contained in:
Vadim Zeitlin 2022-08-03 23:26:12 +02:00
parent e63fe497ab
commit 934aa20d69

View file

@ -48,10 +48,21 @@ jobs:
command: ./configure --disable-debug-info
- run:
name: Build
name: Build libraries
command: |
make -k $wxBUILD_ARGS CXXFLAGS='-Werror -Wno-error=cpp'
- run:
name: Build tests
command: |
make -k $wxBUILD_ARGS CXXFLAGS='-Werror -Wno-error=cpp' -C tests
- run:
name: Run tests
command: |
cd tests
WX_TEST_WEBREQUEST_URL="0" ./test
- run:
name: Show ccache statistics
when: always