From 736193db1a8e331e0422ef0de5a1231c41404024 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 | 5 +++-- .github/workflows/integration-tests.yml.in | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index ea277ec00399..a4e791699111 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -396,9 +396,10 @@ jobs: mkdir -p ~/.ccache du -h -d 1 ~/.ccache - - name: Update PATH + - name: Update compiler to clang 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..8b995b44df46 100644 --- a/.github/workflows/integration-tests.yml.in +++ b/.github/workflows/integration-tests.yml.in @@ -388,9 +388,10 @@ jobs: - *restore-build-artifacts-step - *inspect-cache-directories-step - - name: Update PATH + - name: Update compiler to clang run: | - echo "/opt/rocm/llvm/bin" >> $GITHUB_PATH + export CC=/usr/bin/clang + export CXX=/usr/bin/clang++ - name: Install pip dependencies run: |