diff --git a/.github/workflows/everything.yml b/.github/workflows/everything.yml index 30b78560df..e6fd84395b 100644 --- a/.github/workflows/everything.yml +++ b/.github/workflows/everything.yml @@ -66,7 +66,7 @@ jobs: runs-on: ubuntu-latest container: - image: ornladios/adios2:ci-formatting + image: docker.io/ornladios/adios2:ci-formatting steps: - uses: actions/checkout@v4 @@ -94,7 +94,7 @@ jobs: runs-on: ubuntu-latest container: - image: ornladios/adios2:ci-spack-el8-${{ matrix.compiler }}-${{ matrix.parallel }} + image: docker.io/ornladios/adios2:ci-spack-el8-${{ matrix.compiler }}-${{ matrix.parallel }} options: --shm-size=1g env: GH_YML_JOBNAME: ${{ matrix.os }}-${{ matrix.gpu_backend }}${{ matrix.compiler }}-${{ matrix.parallel }} diff --git a/cmake/DetectOptions.cmake b/cmake/DetectOptions.cmake index c1ed1dee2b..9ff1dd0894 100644 --- a/cmake/DetectOptions.cmake +++ b/cmake/DetectOptions.cmake @@ -67,6 +67,9 @@ function(lists_get_prefix listVars outVar) set(${outVar} "${prefix}" PARENT_SCOPE) endfunction() +# Multithreading +find_package(Threads REQUIRED) + # Blosc2 if(ADIOS2_USE_Blosc2 STREQUAL AUTO) # Prefect CONFIG mode @@ -544,9 +547,6 @@ if(AWSSDK_FOUND) set(ADIOS2_HAVE_AWSSDK TRUE) endif() -# Multithreading -find_package(Threads REQUIRED) - # Floating point detection include(CheckTypeRepresentation)