Skip to content

Commit

Permalink
Don't bother with topology detection in CI on OSX and FreeBSD.
Browse files Browse the repository at this point in the history
  • Loading branch information
insertinterestingnamehere committed Oct 27, 2023
1 parent ddffaa8 commit 526802d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ osx_m1_task:
QTHREADS_SCHEDULER: sherwood
install_deps_script: |
brew install autoconf automake libtool coreutils # coreutils is to get gtimeout for CI and is not universally required by qthreads.
brew install hwloc
hwloc-ls --version
build_script: |
./autogen.sh
./configure --enable-picky --with-scheduler=$QTHREADS_SCHEDULER --with-topology=hwloc
./configure --enable-picky --with-scheduler=$QTHREADS_SCHEDULER --with-topology=no
make -j$CIRRUS_CPU
test_script: |
gtimeout --foreground 3m make check
Expand All @@ -28,10 +26,9 @@ freebsd_task:
install_deps_script: |
pkg install -y bash
pkg install -y llvm autoconf automake libtool
pkg install -y hwloc
build_script: |
bash autogen.sh
bash configure --enable-picky --with-scheduler=$QTHREADS_SCHEDULER --with-topology=hwloc
bash configure --enable-picky --with-scheduler=$QTHREADS_SCHEDULER --with-topology=no
make -j$CIRRUS_CPU
test_script: |
timeout --foreground 2m make check
Expand Down

0 comments on commit 526802d

Please sign in to comment.