Skip to content

Commit

Permalink
Make a bunch of Linaro 2 stage builders use clean builds
Browse files Browse the repository at this point in the history
To take advantage of #266.
We use ccache on all our bots so this will not add much overhead.

The SVE bots are fast enough that the buildup of build requests is
not really a problem, but for consistency I've marked them clean
so all our 2 stage builds are clean.
  • Loading branch information
DavidSpickett committed Nov 12, 2024
1 parent c030b8d commit 4b7901f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@
'workernames': ["linaro-clang-armv7-2stage"],
'builddir':"clang-armv7-2stage",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
clean=False,
clean=True,
checkout_compiler_rt=False,
checkout_lld=False,
useTwoStage=True,
Expand Down Expand Up @@ -363,7 +363,7 @@
'workernames' : ["linaro-clang-armv7-vfpv3-2stage"],
'builddir': "clang-armv7-vfpv3-2stage",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
clean=False,
clean=True,
checkout_compiler_rt=False,
checkout_lld=False,
useTwoStage=True,
Expand All @@ -389,7 +389,7 @@
'workernames' : ["linaro-clang-aarch64-lld-2stage"],
'builddir':"clang-aarch64-lld-2stage",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
clean=False,
clean=True,
useTwoStage=True,
runTestSuite=True,
testsuite_flags=[
Expand Down Expand Up @@ -422,7 +422,7 @@
'workernames' : ["linaro-clang-armv8-lld-2stage"],
'builddir': "clang-armv8-lld-2stage",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
clean=False,
clean=True,
useTwoStage=True,
runTestSuite=True,
testsuite_flags=[
Expand Down Expand Up @@ -572,7 +572,7 @@
'builddir': "clang-arm64-windows-msvc-2stage",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
vs="manual",
clean=False,
clean=True,
useTwoStage=True,
checkout_flang=True,
testStage1=False,
Expand Down

0 comments on commit 4b7901f

Please sign in to comment.