From 934aa20d69b69ff69aa2e2df34b78bff84c8d8ad Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 3 Aug 2022 23:26:12 +0200 Subject: [PATCH] Build and run tests on Circle CI too Add more steps to the build job. --- .circleci/config.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 09c9efdde3..e7a5af4677 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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