Skip to content

Commit

Permalink
Downgrade GCC bots to Clang 16 as Clang 17 packages are now broken
Browse files Browse the repository at this point in the history
Add a 16 sanitizer bot since the 17 sanitizer bot is also broken.

Upstream: llvm/llvm-project#73402
  • Loading branch information
danakj committed Nov 29, 2023
1 parent fca592c commit 8649261
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@ jobs:
installed_clang_version: 14
}

- {
name: "Ubuntu Clang-16 Sanitizer",
os: ubuntu-latest,
build_type: "Release",
cc: "clang-16",
cxx: "clang++-16",
clang_version: 16,
installed_clang_version: 14
}

- {
name: "Ubuntu Clang-17 Debug",
os: ubuntu-latest,
Expand Down Expand Up @@ -75,7 +85,7 @@ jobs:
build_type: "Release",
cc: "gcc-13",
cxx: "g++-13",
clang_version: 17,
clang_version: 16,
installed_clang_version: 14
}

Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/try.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ jobs:
installed_clang_version: 14
}

- {
name: "Ubuntu Clang-16 Sanitizer",
os: ubuntu-latest,
build_type: "Release",
cc: "clang-16",
cxx: "clang++-16",
clang_version: 16,
installed_clang_version: 14
}

- {
name: "Ubuntu Clang-17 Debug",
os: ubuntu-latest,
Expand Down Expand Up @@ -78,7 +88,7 @@ jobs:
build_type: "Release",
cc: "gcc-13",
cxx: "g++-13",
clang_version: 17,
clang_version: 16,
installed_clang_version: 14
}

Expand Down

0 comments on commit 8649261

Please sign in to comment.