Skip to content

Commit

Permalink
LLVM_ENABLE_RUNTIMES=flang-rt for amdgpu-offload-* (#402)
Browse files Browse the repository at this point in the history
Add `depends_on_projects=['flang-rt']`, to the amdgpu-offload-* builders. The prepares the removal of the "projects" build of the flang runtime in llvm/llvm-project#124126.

The corresponding change in the LLVM repository is
llvm/llvm-project#129692

Affected builders (production):
* [amdgpu-offload-ubuntu-22-cmake-build-only](https://lab.llvm.org/buildbot/#/builders/203)
* [amdgpu-offload-rhel-9-cmake-build-only](https://lab.llvm.org/buildbot/#/builders/205)
* [amdgpu-offload-rhel-8-cmake-build-only](https://lab.llvm.org/buildbot/#/builders/204)

Affected workers (production):
 * [rocm-docker-ubu-22](https://lab.llvm.org/buildbot/#/workers/162)
 * [rocm-docker-rhel-9](https://lab.llvm.org/buildbot/#/workers/163)
 * [rocm-docker-rhel-8](https://lab.llvm.org/buildbot/#/workers/164)
  • Loading branch information
Meinersbur authored Mar 5, 2025
1 parent b4146d0 commit c2ab1fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -1961,7 +1961,7 @@
'builddir': "amdgpu-offload-ubuntu-22-cmake-build-only",
'collapseRequests' : False,
'factory' : AnnotatedBuilder.getAnnotatedBuildFactory(
depends_on_projects=["llvm", "clang", "flang", "mlir", "lld", "compiler-rt", "libcxx", "libcxxabi", "openmp", "offload", "libunwind"],
depends_on_projects=["llvm", "clang", "flang", "flang-rt", "mlir", "lld", "compiler-rt", "libcxx", "libcxxabi", "openmp", "offload", "libunwind"],
script="amdgpu-offload-cmake.py",
checkout_llvm_sources=True,
script_interpreter=None
Expand All @@ -1973,7 +1973,7 @@
'builddir': "amdgpu-offload-rhel-9-cmake-build-only",
'collapseRequests' : False,
'factory' : AnnotatedBuilder.getAnnotatedBuildFactory(
depends_on_projects=["llvm", "clang", "flang", "mlir", "lld", "compiler-rt", "libcxx", "libcxxabi", "openmp", "offload", "libunwind"],
depends_on_projects=["llvm", "clang", "flang", "flang-rt", "mlir", "lld", "compiler-rt", "libcxx", "libcxxabi", "openmp", "offload", "libunwind"],
script="amdgpu-offload-cmake.py",
checkout_llvm_sources=True,
script_interpreter=None
Expand All @@ -1985,7 +1985,7 @@
'builddir': "amdgpu-offload-rhel-8-cmake-build-only",
'collapseRequests' : False,
'factory' : AnnotatedBuilder.getAnnotatedBuildFactory(
depends_on_projects=["llvm", "clang", "flang", "mlir", "lld", "compiler-rt", "libcxx", "libcxxabi", "offload", "openmp", "libunwind"],
depends_on_projects=["llvm", "clang", "flang", "flang-rt", "mlir", "lld", "compiler-rt", "libcxx", "libcxxabi", "offload", "openmp", "libunwind"],
script="amdgpu-offload-cmake.py",
checkout_llvm_sources=True,
script_interpreter=None
Expand Down

0 comments on commit c2ab1fd

Please sign in to comment.