Skip to content

Commit

Permalink
Make Linaro 2 stage builders use clean builds (#306)
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 authored Nov 14, 2024
1 parent ad4bd18 commit 910c706
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 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 @@ -499,7 +499,7 @@
'workernames' : ["linaro-g3-01", "linaro-g3-02", "linaro-g3-03", "linaro-g3-04"],
'builddir': "clang-aarch64-sve-vla-2stage",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
clean=False,
clean=True,
checkout_flang=True,
useTwoStage=True,
testStage1=False,
Expand Down Expand Up @@ -547,7 +547,7 @@
'workernames' : ["linaro-g3-01", "linaro-g3-02", "linaro-g3-03", "linaro-g3-04"],
'builddir': "clang-aarch64-sve-vls-2stage",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
clean=False,
clean=True,
checkout_flang=True,
useTwoStage=True,
testStage1=False,
Expand All @@ -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 910c706

Please sign in to comment.