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: |