Skip to content

Commit 5379555

Browse files
authored
Rename assembly -> graphicsfuzz (#125)
1 parent 4ae8630 commit 5379555

27 files changed

+25
-25
lines changed

run-configurations/Build.xml .idea/runConfigurations/Build.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

run-configurations/Build__run_tests_.xml .idea/runConfigurations/Build__run_tests_.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

run-configurations/Build__run_tests___image_tests_.xml .idea/runConfigurations/Build__run_tests___image_tests_.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

run-configurations/Clean.xml .idea/runConfigurations/Clean.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

build/commands/build

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def call(args):
3636
def go():
3737
os.chdir(os.environ["OGLT_SOURCE_ROOT"])
3838
os.environ["MAVEN_OPTS"] = os.environ.get("MAVEN_OPTS", "") + " -XX:+TieredCompilation -XX:TieredStopAtLevel=1 "
39-
call(["mvn", "-Dmaven.test.skip=true", "-am", "-pl", "assembly", "package"])
39+
call(["mvn", "-Dmaven.test.skip=true", "-am", "-pl", "graphicsfuzz", "package"])
4040

4141
if __name__ == "__main__":
4242
go()

build/commands/clean

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def call(args):
3636
def go():
3737
os.chdir(os.environ["OGLT_SOURCE_ROOT"])
3838
os.environ["MAVEN_OPTS"] = os.environ.get("MAVEN_OPTS", "") + " -XX:+TieredCompilation -XX:TieredStopAtLevel=1 "
39-
call(["mvn", "-Dmaven.test.skip=true", "-am", "-pl", "assembly", "clean"])
39+
call(["mvn", "-Dmaven.test.skip=true", "-am", "-pl", "graphicsfuzz", "clean"])
4040

4141
if __name__ == "__main__":
4242
go()

build/commands/m

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def go():
3737
os.chdir(os.environ["OGLT_SOURCE_ROOT"])
3838
os.environ["MAVEN_OPTS"] = os.environ.get("MAVEN_OPTS", "") + " -XX:+TieredCompilation -XX:TieredStopAtLevel=1 "
3939
if len(sys.argv[1:]) == 0:
40-
print("Try: \nm -pl assembly package\nm -pl assembly package -P shade,zip")
40+
print("Try: \nm -pl graphicsfuzz package")
4141
return
4242
call(["mvn", "-Dmaven.test.skip=true", "-am"] + sys.argv[1:])
4343

build/docker/dockerfiles/DockerfileBuild

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN \
2525

2626
COPY \
2727
build/docker/scripts/build.sh \
28-
assembly/src/main/scripts/docker/scripts/umask-wrapper.sh \
28+
graphicsfuzz/src/main/scripts/docker/scripts/umask-wrapper.sh \
2929
/data/
3030

3131
WORKDIR /data

build/travis/build.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ def go():
7575

7676
shutil.copy2(
7777
"OPEN_SOURCE_LICENSES.TXT",
78-
path("assembly", "src", "main", "scripts", "OPEN_SOURCE_LICENSES.TXT")
78+
path("graphicsfuzz", "src", "main", "scripts", "OPEN_SOURCE_LICENSES.TXT")
7979
)
8080

8181
shutil.copy2(
8282
"LICENSE",
83-
path("assembly", "src", "main", "scripts", "LICENSE.TXT")
83+
path("graphicsfuzz", "src", "main", "scripts", "LICENSE.TXT")
8484
)
8585

8686
# Rebuild with tests.
@@ -89,8 +89,8 @@ def go():
8989

9090
# Copy output.
9191
shutil.copy2(
92-
path("assembly", "target", "assembly-1.0.zip"),
93-
path("out", "server.zip")
92+
path("graphicsfuzz", "target", "graphicsfuzz-1.0.zip"),
93+
path("out", "graphicsfuzz-1.0.zip")
9494
)
9595

9696
source_root = os.path.abspath(".")

build/travis/check_headers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def exclude_filepath(f: str):
7575
return \
7676
f.startswith("./python/src/main/python/drivers/") and is_command_wrapper(f) or \
7777
f in [
78-
"./assembly/src/main/scripts/server-static/shaders/shader.vert",
78+
"./graphicsfuzz/src/main/scripts/server-static/shaders/shader.vert",
7979
"./server-static-public/src/main/files/server-static/runner_multi_template.html",
8080
"./platforms/libgdx/OGLTesting/build.gradle",
8181
"./platforms/libgdx/OGLTesting/gradle.properties",

build/travis/licenses.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ def write_license_from_url(fout: typing.TextIO, url: str) -> None:
888888

889889
def go():
890890
maven_dependencies: typing.Dict[str, typing.Dict] = dict()
891-
read_maven_dependencies(maven_dependencies, path("assembly", "target", "dependencies.txt"))
891+
read_maven_dependencies(maven_dependencies, path("graphicsfuzz", "target", "dependencies.txt"))
892892
dependencies_populated = get_maven_dependencies_populated()
893893
dependencies_populated.update(get_extras())
894894

assembly/pom.xml graphicsfuzz/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ limitations under the License.
1818
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1919
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2020
<modelVersion>4.0.0</modelVersion>
21-
<artifactId>assembly</artifactId>
22-
<name>assembly</name>
21+
<artifactId>graphicsfuzz</artifactId>
22+
<name>graphicsfuzz</name>
2323
<packaging>pom</packaging>
2424

2525
<parent>
File renamed without changes.
File renamed without changes.

parent-all/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -240,11 +240,6 @@ limitations under the License.
240240
<artifactId>android-client-dep</artifactId>
241241
<version>1.0</version>
242242
</dependency>
243-
<dependency>
244-
<groupId>com.graphicsfuzz</groupId>
245-
<artifactId>assembly</artifactId>
246-
<version>1.0</version>
247-
</dependency>
248243
<dependency>
249244
<groupId>com.graphicsfuzz</groupId>
250245
<artifactId>assembly-binaries</artifactId>
@@ -316,6 +311,11 @@ limitations under the License.
316311
<artifactId>generator</artifactId>
317312
<version>1.0</version>
318313
</dependency>
314+
<dependency>
315+
<groupId>com.graphicsfuzz</groupId>
316+
<artifactId>graphicsfuzz</artifactId>
317+
<version>1.0</version>
318+
</dependency>
319319
<dependency>
320320
<groupId>com.graphicsfuzz</groupId>
321321
<artifactId>parent-checkstyle</artifactId>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1818
<modelVersion>4.0.0</modelVersion>
1919
<groupId>com.graphicsfuzz</groupId>
20-
<artifactId>GraphicsFuzz</artifactId>
20+
<artifactId>graphicsfuzz-root</artifactId>
2121
<version>1.0</version>
2222
<packaging>pom</packaging>
2323

@@ -31,7 +31,6 @@ limitations under the License.
3131
<module>android-client-dep</module>
3232
<module>assembly-binaries</module>
3333
<module>assembly-public</module>
34-
<module>assembly</module>
3534
<module>ast</module>
3635
<module>checkstyle-config</module>
3736
<module>client-tests</module>
@@ -40,6 +39,7 @@ limitations under the License.
4039
<module>fuzzerserver</module>
4140
<module>generate-and-run-shaders</module>
4241
<module>generator</module>
42+
<module>graphicsfuzz</module>
4343
<module>parent-all</module>
4444
<module>parent-checkstyle</module>
4545
<module>python</module>

util/src/main/java/com/graphicsfuzz/util/ToolPaths.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ public static String getInstallDirectory() {
9696
if (isRunningFromIde(jarDir)) {
9797
return Paths.get(
9898
getSourceRoot(jarDir),
99-
"assembly",
99+
"graphicsfuzz",
100100
"target",
101-
"assembly-1.0").toString();
101+
"graphicsfuzz-1.0").toString();
102102
}
103103

104104
return jarDir.getParentFile().toString();

0 commit comments

Comments
 (0)