From b7e8b2be3455ac8a59f532ae5329e5b6bc00c0f9 Mon Sep 17 00:00:00 2001 From: Bryan Chan Date: Mon, 7 Oct 2024 05:31:03 -0400 Subject: [PATCH] [workflows] Disable intermittently failing build/test job The test case mp_correct/lit/pv01.sh has been failing intermittently in the GitHub workflows. It seems that it only happens when classic-flang-llvm-project is built with Clang 15. This patch disables the job temporarily, until we can determine the root cause of the problem. --- .github/workflows/build_flang.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_flang.yml b/.github/workflows/build_flang.yml index 73ee129de6c..7dc215b6b60 100644 --- a/.github/workflows/build_flang.yml +++ b/.github/workflows/build_flang.yml @@ -21,7 +21,7 @@ jobs: matrix: target: [X86] cc: [clang] - version: [14, 15] + version: [14] llvm_branch: [release_17x, release_18x] include: - target: X86 @@ -100,13 +100,13 @@ jobs: make check-flang-long # Archive documentation just once, for the fastest job. - - if: matrix.cc == 'clang' && matrix.version == '15' + - if: matrix.cc == 'clang' && matrix.version == '14' run: | cd build/flang/docs/web cp -r html/ ../../.. # copy to a place where Upload can find it. # Upload docs just once, for the fastest job. - - if: matrix.cc == 'clang' && matrix.version == '15' + - if: matrix.cc == 'clang' && matrix.version == '14' uses: actions/upload-artifact@v4 with: name: html_docs_flang