Skip to content

Commit

Permalink
updates github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpeter committed Nov 14, 2024
1 parent dd9e694 commit 0d660f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/run_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ echo

./configure \
${adios[@]} \
FC=gfortran MPIFC=mpif90 CC=gcc ${TESTFLAGS}
FC=gfortran MPIFC=mpif90 CC=gcc "${TESTFLAGS}"

# checks
if [[ $? -ne 0 ]]; then echo "configuration failed:"; cat config.log; echo ""; echo "exiting..."; exit 1; fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ jobs:

- name: Run build
env:
TESTFLAGS: --with-mpi # --enable-vectorization
TESTFLAGS: --with-mpi
run: ./.github/scripts/run_build.sh
shell: bash

Expand Down Expand Up @@ -803,7 +803,7 @@ jobs:

- name: Run build
env:
TESTFLAGS: --with-hip HIPCC=g++ HIP_FLAGS="-O2 -g -std=c++17" HIP_PLATFORM=cpu HIP_INC=./external_libs/ROCm-HIP-CPU/include HIP_LIBS="-ltbb -lpthread -lstdc++"
TESTFLAGS: --with-hip HIPCC=g++ HIP_FLAGS='-O2 -g -std=c++17' HIP_PLATFORM=cpu HIP_INC=./external_libs/ROCm-HIP-CPU/include HIP_LIBS='-ltbb -lpthread -lstdc++'
run: ./.github/scripts/run_build.sh
shell: bash

Expand Down

0 comments on commit 0d660f9

Please sign in to comment.