Build and run tests on Circle CI too
Add more steps to the build job.
This commit is contained in:
parent
e63fe497ab
commit
934aa20d69
1 changed files with 12 additions and 1 deletions
|
|
@ -48,10 +48,21 @@ jobs:
|
||||||
command: ./configure --disable-debug-info
|
command: ./configure --disable-debug-info
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Build
|
name: Build libraries
|
||||||
command: |
|
command: |
|
||||||
make -k $wxBUILD_ARGS CXXFLAGS='-Werror -Wno-error=cpp'
|
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:
|
- run:
|
||||||
name: Show ccache statistics
|
name: Show ccache statistics
|
||||||
when: always
|
when: always
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue