File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -62,16 +62,15 @@ freebsd_task:
6262 env :
6363 QTHREADS_SCHEDULER : distrib
6464 install_deps_script : |
65- pkg install -y bash
66- pkg install -y llvm autoconf automake libtool
65+ pkg install -y llvm cmake
6766 pkg install -y coreutils # to get gtimeout for CI. The built-in timeout sometimes fails to kill the process.
6867 build_script : |
69- bash autogen.sh
70- bash configure --enable-picky --with-scheduler=$QTHREADS_SCHEDULER --with-topology=no
71- make -j$CIRRUS_CPU
72- make tests -j$CIRRUS_CPU
68+ mkdir build
69+ cd build
70+ cmake -DCMAKE_BUILD_TYPE=Release -DQTHREADS_SCHEDULER=$QTHREADS_SCHEDULER -DQTHREADS_TOPOLOGY=no -DQTHREADS_CONTEXT_SWAP_IMPL=system ..
71+ make -j$CIRRUS_CPU VERBOSE=1
7372 test_script : |
74- gtimeout --foreground -k 10s 2m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
73+ CTEST_OUTPUT_ON_FAILURE=1 gtimeout --foreground -k 10s 2m make test VERBOSE=1
7574
7675arm_linux_task :
7776 arm_container :
You can’t perform that action at this time.
0 commit comments