Skip to content

Commit

Permalink
fix 3
Browse files Browse the repository at this point in the history
CI_FILTER: ^linux_gcc13
  • Loading branch information
SimeonEhrig committed Jul 16, 2024
1 parent 7156d90 commit a9c86fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion script/docker_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -200,4 +200,4 @@ then
ALPAKA_DOCKER_ENV_LIST+=("--env" "alpaka_SYCL_ONEAPI_CPU_ISA=${alpaka_SYCL_ONEAPI_CPU_ISA}")
fi

docker_retry docker run -v "$(pwd)":"$(pwd)" -w "$(pwd)" "${ALPAKA_DOCKER_ENV_LIST[@]}" "${ALPAKA_CI_DOCKER_BASE_IMAGE_NAME}" /bin/bash -c "source ./script/install.sh && ./script/run.sh"
docker_retry docker run -v "$(pwd)":"$(pwd)" -w "$(pwd)" "${ALPAKA_DOCKER_ENV_LIST[@]}" "${ALPAKA_CI_DOCKER_BASE_IMAGE_NAME}" /bin/bash -c "source ./script/setup_utilities.sh && source ./script/install.sh && ./script/run.sh"
8 changes: 8 additions & 0 deletions script/setup_utilities.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

# serveral helper function and tools for the CI

: "${ALPAKA_CI_OS_NAME?'ALPAKA_CI_OS_NAME must be specified'}"

# enable Terminal colors for MacOS
if [ "$ALPAKA_CI_OS_NAME" = "macOS" ]; then
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
fi

# display a message in green
echo_green() {
echo -e "\e[1;32m$1\e[0m"
Expand Down

0 comments on commit a9c86fc

Please sign in to comment.