Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
CI_FILTER: ^linux_gcc
  • Loading branch information
SimeonEhrig committed Aug 29, 2023
1 parent 2490996 commit 4e22cf4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions script/job_generator/generate_job_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,11 @@ def job_variables(job: Dict[str, Tuple[str, str]]) -> Dict[str, str]:
# enabled backend depending on the job parameters
append_backend_variables(variables, job)

if job[DEVICE_COMPILER][NAME] == GCC:
variables["CC"] = "gcc"
variables["CXX"] = "g++"
variables["ALPAKA_CI_GCC_VER"] = job[HOST_COMPILER][VERSION]

if job[DEVICE_COMPILER][NAME] == HIPCC:
variables["CC"] = "clang"
variables["CXX"] = "clang++"
Expand Down

0 comments on commit 4e22cf4

Please sign in to comment.