Skip to content

Commit

Permalink
fix 2
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 1995bd3 commit 7156d90
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ jobs:
env:
ALPAKA_CI_OS_NAME: ${{runner.os}}
shell: bash
run: cd ${GITHUB_WORKSPACE} && source ./script/setup_utilities.sh && ./script/ci.sh
run: cd ${GITHUB_WORKSPACE} && ./script/ci.sh
- name: build + test
if: (runner.os == 'Linux' || runner.os == 'macOS')
env:
ALPAKA_CI_OS_NAME: ${{runner.os}}
run: cd ${GITHUB_WORKSPACE} && source ./script/setup_utilities.sh && ./script/ci.sh
run: cd ${GITHUB_WORKSPACE} && ./script/ci.sh
2 changes: 2 additions & 0 deletions script/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

source ./script/set.sh

source ./script/setup_utilities.sh

./script/print_env.sh
source ./script/before_install.sh
if [ -n "$GITHUB_ACTIONS" ] && [ "$ALPAKA_CI_OS_NAME" = "Linux" ]; then
Expand Down
2 changes: 2 additions & 0 deletions script/install_boost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
# SPDX-License-Identifier: MPL-2.0
#

echo_green "<INSTALL: boost>"

source ./script/travis_retry.sh
source ./script/set.sh

Expand Down
1 change: 1 addition & 0 deletions script/job_generator/generate_job_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@ def create_job(job: Dict[str, Tuple[str, str]], container_version: float, gitlab
job_yaml["image"] = job_image(job, container_version, gitlab_images)
job_yaml["variables"] = job_variables(job)
job_yaml["script"] = [
"source ./script/setup_utilities.sh",
"source ./script/gitlabci/print_env.sh",
"source ./script/gitlab_ci_run.sh",
]
Expand Down

0 comments on commit 7156d90

Please sign in to comment.