diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a620aea9..e112a7d9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,22 +10,23 @@ jobs: - name: Build run: make -s -j`nproc` TESTS=1 SAMPLES=1 ASAN=1 DEFAULT_TARGET=shared_release - name: Run tests - run: | - export CPPUNIT_IGNORE="\ - CppUnit::TestCaller.testEchoIPv4,\ - CppUnit::TestCaller.testSendToReceiveFromIPv4,\ - CppUnit::TestCaller.testPing,\ - CppUnit::TestCaller.testBigPing,\ - CppUnit::TestCaller.testSendToReceiveFrom,\ - CppUnit::TestCaller.testAssign,\ - CppUnit::TestCaller.testMTU,\ - CppUnit::TestCaller.testTimeSync,\ - CppUnit::TestCaller.testProxy,\ - CppUnit::TestCaller.testProxy" - export EXCLUDE_TESTS="Data/MySQL Data/ODBC Data/PostgreSQL MongoDB" - cp platform/Foundation/testsuite/bin/Linux/x86_64/TestApp platform/Foundation/testsuite - export PATH=$PATH:. - cd platform && build/script/runtests.sh + run: >- + cp platform/Foundation/testsuite/bin/Linux/x86_64/TestApp platform/Foundation/testsuite && + cd platform && + CPPUNIT_IGNORE=" + CppUnit::TestCaller.testEchoIPv4, + CppUnit::TestCaller.testSendToReceiveFromIPv4, + CppUnit::TestCaller.testPing, + CppUnit::TestCaller.testBigPing, + CppUnit::TestCaller.testSendToReceiveFrom, + CppUnit::TestCaller.testAssign, + CppUnit::TestCaller.testMTU, + CppUnit::TestCaller.testTimeSync, + CppUnit::TestCaller.testProxy, + CppUnit::TestCaller.testProxy" + EXCLUDE_TESTS="Data/MySQL Data/ODBC Data/PostgreSQL MongoDB" + PATH=$PATH:. + build/script/runtests.sh macos-clang-make: runs-on: macos-12