Skip to content

Commit

Permalink
Add clang-19 bots, move sanitizer from 17 to 18
Browse files Browse the repository at this point in the history
This keeps a sanitizer bot on the oldest and newest stable clang
versions that we're supporting.
  • Loading branch information
danakj committed Jan 29, 2024
1 parent 1b056c2 commit f9c481a
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 16 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,25 +60,35 @@ jobs:
}

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

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


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

- {
name: "Ubuntu GCC",
os: ubuntu-latest,
Expand Down
25 changes: 17 additions & 8 deletions .github/workflows/try.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,25 +62,34 @@ jobs:
}

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

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

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

- {
name: "Ubuntu GCC",
os: ubuntu-latest,
Expand Down

0 comments on commit f9c481a

Please sign in to comment.