From 85835ddf17f1dbb42f393ca580325b474258abe0 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Thu, 6 Apr 2023 15:35:53 -0700 Subject: [PATCH] GitHub Actions: macOS has 3 Cores https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources --- .github/workflows/macos.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 9f6616fa9c..04fbbbe30e 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -40,7 +40,7 @@ jobs: -DopenPMD_USE_HDF5=ON \ -DopenPMD_USE_ADIOS2=ON \ -DopenPMD_USE_INVASIVE_TESTS=ON - cmake --build build --parallel 2 + cmake --build build --parallel 3 ctest --test-dir build --verbose appleclang12_py_ad1: @@ -59,7 +59,7 @@ jobs: tar -xzf adios-1.13.1.tar.gz cd adios-1.13.1/ CFLAGS="-fPIC" ./configure --enable-static --enable-shared --prefix=/usr/local --without-mpi --disable-fortran - make -j 2 + make -j 3 make install set -e - name: Build @@ -76,7 +76,7 @@ jobs: -DopenPMD_USE_ADIOS1=ON \ -DopenPMD_USE_ADIOS2=OFF \ -DopenPMD_USE_INVASIVE_TESTS=ON - cmake --build build --parallel 2 + cmake --build build --parallel 3 ctest --test-dir build --verbose # TODO: apple_conda_ompi_all (similar to conda_ompi_all on Linux)