Skip to content

Commit

Permalink
Upload Graph I/O Javadoc next to other Javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaroslav Tulach committed Jan 12, 2018
1 parent d2e3dfc commit 2ee54f5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions ci_includes/publish-javadoc.hocon
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,21 @@ builds += [
["mx", "build"],
["mx", "javadoc"],
["zip", "-r", "javadoc.zip", "javadoc"],
[cd, ".."],
[cd, "../compiler"],
["mx", "build"],
["mx", "javadoc"],
["cd", "src/org.graalvm.graphio/"],
["zip", "-r", "../../graphio-javadoc.zip", "javadoc"],
[cd, "../../.."],
["git", "fetch", "origin", "gh-pages"],
["git", "checkout", "-f", "FETCH_HEAD", "-B", "gh-pages"],
["rm", "-rf", "sdk/javadoc", "truffle/javadoc", "tools/javadoc"],
["rm", "-rf", "sdk/javadoc", "truffle/javadoc", "tools/javadoc", "graphio/javadoc"],
["git", "status" ],
["unzip", "-o", "-d", "sdk", "sdk/javadoc.zip"],
["unzip", "-o", "-d", "truffle", "truffle/javadoc.zip"],
["unzip", "-o", "-d", "tools", "tools/javadoc.zip"],
["git", "add", "sdk/javadoc", "truffle/javadoc", "tools/javadoc"],
["unzip", "-o", "-d", "graphio", "compiler/graphio-javadoc.zip"],
["git", "add", "sdk/javadoc", "truffle/javadoc", "tools/javadoc", "graphio/javadoc"],
["git", "config", "user.name", "Javadoc Publisher"],
["git", "config", "user.email", "[email protected]"],
["git", "commit", "-m", [ "echo", "Javadoc as of", [ "date", "+%Y/%m/%d" ] ] ],
Expand Down

0 comments on commit 2ee54f5

Please sign in to comment.