From 8c9a2b8df37cf3b28c7c54b5e7e76b090f2f6535 Mon Sep 17 00:00:00 2001 From: Alexander Weinrauch Date: Fri, 22 Nov 2024 15:38:49 +0000 Subject: [PATCH] Use system clang instead of rocm's clang version --- .github/workflows/integration-tests.yml | 3 ++- .github/workflows/integration-tests.yml.in | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index ea277ec00399..8257b506a992 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -398,7 +398,8 @@ jobs: du -h -d 1 ~/.ccache - name: Update PATH run: | - echo "/opt/rocm/llvm/bin" >> $GITHUB_PATH + export CC=/usr/bin/clang + export CXX=/usr/bin/clang++ - name: Install pip dependencies run: | python3 -m pip install --upgrade pip diff --git a/.github/workflows/integration-tests.yml.in b/.github/workflows/integration-tests.yml.in index 29ca38f5a8d5..53911d83b3a3 100644 --- a/.github/workflows/integration-tests.yml.in +++ b/.github/workflows/integration-tests.yml.in @@ -390,7 +390,8 @@ jobs: - name: Update PATH run: | - echo "/opt/rocm/llvm/bin" >> $GITHUB_PATH + export CC=/usr/bin/clang + export CXX=/usr/bin/clang++ - name: Install pip dependencies run: |