1 # -*- coding: utf-8 -*-
3 #-------------------------------------------------------------------------
4 # drawElements Quality Program utilities
5 # --------------------------------------
7 # Copyright 2016 The Android Open Source Project
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
13 # http://www.apache.org/licenses/LICENSE-2.0
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
21 #-------------------------------------------------------------------------
27 from build.common import *
28 from build.build import *
31 def __init__ (self, srcDir, tmpDir):
39 def isAvailable (self, env):
43 raise Exception("Not implemented")
45 class RunScript(BuildTestStep):
46 def __init__ (self, scriptPath, getExtraArgs = None):
47 self.scriptPath = scriptPath
48 self.getExtraArgs = getExtraArgs
51 return self.scriptPath
54 args = ["python", os.path.join(env.srcDir, self.scriptPath)]
56 if self.getExtraArgs != None:
57 args += self.getExtraArgs(env)
61 def makeCflagsArgs (cflags):
62 cflagsStr = " ".join(cflags)
63 return ["-DCMAKE_C_FLAGS=%s" % cflagsStr, "-DCMAKE_CXX_FLAGS=%s" % cflagsStr]
65 def makeBuildArgs (target, cc, cpp, cflags):
66 return ["-DDEQP_TARGET=%s" % target, "-DCMAKE_C_COMPILER=%s" % cc, "-DCMAKE_CXX_COMPILER=%s" % cpp] + makeCflagsArgs(cflags)
69 def isAvailable (self, env):
72 class UnixConfig(BuildConfigGen):
73 def __init__ (self, target, buildType, cc, cpp, cflags):
75 self.buildType = buildType
80 def isAvailable (self, env):
81 return which(self.cc) != None and which(self.cpp) != None
83 def getBuildConfig (self, env, buildDir):
84 args = makeBuildArgs(self.target, self.cc, self.cpp, self.cflags)
85 return BuildConfig(buildDir, self.buildType, args, env.srcDir)
87 class VSConfig(BuildConfigGen):
88 def __init__ (self, buildType):
89 self.buildType = buildType
91 def getBuildConfig (self, env, buildDir):
92 args = ["-DCMAKE_C_FLAGS=/WX -DCMAKE_CXX_FLAGS=/WX"]
93 return BuildConfig(buildDir, self.buildType, args, env.srcDir)
95 class Build(BuildTestStep):
96 def __init__ (self, buildDir, configGen, generator):
97 self.buildDir = buildDir
98 self.configGen = configGen
99 self.generator = generator
104 def isAvailable (self, env):
105 return self.configGen.isAvailable(env) and self.generator != None and self.generator.isAvailable()
108 # specialize config for env
109 buildDir = os.path.join(env.tmpDir, self.buildDir)
110 curConfig = self.configGen.getBuildConfig(env, buildDir)
112 build(curConfig, self.generator)
114 class CheckSrcChanges(BuildTestStep):
116 return "check for changes"
119 pushWorkingDir(env.srcDir)
120 execute(["git", "diff", "--exit-code"])
123 def getClangVersion ():
124 knownVersions = ["4.0", "3.9", "3.8", "3.7", "3.6", "3.5"]
125 for version in knownVersions:
126 if which("clang-" + version) != None:
130 def runSteps (steps):
132 if step.isAvailable(env):
133 print "Run: %s" % step.getName()
136 print "Skip: %s" % step.getName()
138 def runRecipe (steps):
139 allSteps = PREREQUISITES + steps + POST_CHECKS
142 COMMON_GCC_CFLAGS = ["-Werror"]
143 COMMON_CLANG_CFLAGS = COMMON_GCC_CFLAGS + ["-Wno-error=unused-command-line-argument"]
144 GCC_32BIT_CFLAGS = COMMON_GCC_CFLAGS + ["-m32"]
145 CLANG_32BIT_CFLAGS = COMMON_CLANG_CFLAGS + ["-m32"]
146 GCC_64BIT_CFLAGS = COMMON_GCC_CFLAGS + ["-m64"]
147 CLANG_64BIT_CFLAGS = COMMON_CLANG_CFLAGS + ["-m64"]
148 CLANG_VERSION = getClangVersion()
150 # Always ran before any receipe
152 RunScript(os.path.join("external", "fetch_sources.py"))
155 # Always ran after any receipe
161 Build("clang-64-debug",
164 "clang" + CLANG_VERSION,
165 "clang++" + CLANG_VERSION,
168 Build("gcc-32-debug",
175 Build("gcc-64-release",
184 ANY_VS_X64_GENERATOR),
188 ('android-mustpass', [
189 RunScript(os.path.join("scripts", "build_android_mustpass.py"),
190 lambda env: ["--build-dir", os.path.join(env.tmpDir, "android-mustpass")]),
192 ('vulkan-mustpass', [
193 RunScript(os.path.join("external", "vulkancts", "scripts", "build_mustpass.py"),
194 lambda env: ["--build-dir", os.path.join(env.tmpDir, "vulkan-mustpass")]),
197 RunScript(os.path.join("scripts", "gen_egl.py")),
198 RunScript(os.path.join("scripts", "opengl", "gen_all.py")),
199 RunScript(os.path.join("external", "vulkancts", "scripts", "gen_framework.py")),
200 RunScript(os.path.join("scripts", "src_util", "check_all.py")),
204 def getBuildRecipes ():
205 return [(b.getName(), [b]) for b in BUILD_TARGETS]
207 def getAllRecipe (recipes):
209 for name, steps in recipes:
211 return ("all", allSteps)
214 recipes = getBuildRecipes()
215 recipes += SPECIAL_RECIPES
218 def getRecipe (recipes, recipeName):
219 for curName, steps in recipes:
220 if curName == recipeName:
221 return (curName, steps)
224 RECIPES = getRecipes()
227 parser = argparse.ArgumentParser(description = "Build and test source",
228 formatter_class=argparse.ArgumentDefaultsHelpFormatter)
229 parser.add_argument("-s",
233 help="Source directory")
234 parser.add_argument("-t",
237 default=os.path.join(tempfile.gettempdir(), "deqp-build-test"),
238 help="Temporary directory")
239 parser.add_argument("-r",
242 choices=[n for n, s in RECIPES] + ["all"],
244 help="Build / test recipe")
245 parser.add_argument("-d",
249 help="Print out recipes that have any available actions")
250 return parser.parse_args()
252 if __name__ == "__main__":
254 env = Environment(args.srcDir, args.tmpDir)
257 for name, steps in RECIPES:
259 if step.isAvailable(env):
263 name, steps = getAllRecipe(RECIPES) if args.recipe == "all" \
264 else getRecipe(RECIPES, args.recipe)
266 print "Running %s" % name
270 print "All steps completed successfully"