Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[workflows] Disable intermittently failing build/test job #1457

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build_flang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
target: [X86]
cc: [clang]
version: [14, 15]
version: [14]
llvm_branch: [release_17x, release_18x]
include:
- target: X86
Expand Down Expand Up @@ -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
Expand Down
Loading