Skip to content

Commit

Permalink
Added description to the code-tools build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Aug 8, 2023
1 parent 7d08e03 commit 2b9bba8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tools/code-tools/asmtools.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@

#!/bin/bash

###################################################################
# Scrtipt to build asmtools to be reused by jdk testing community #
# currenlty builds tip of master and tip of at8 branch #
# In future, it should clone and build: #
# tip of master, latest release in master, and tip of at7 branch #
###################################################################

# shellcheck disable=SC2035,SC2155
set -euo pipefail
WORKSPACE=$PWD
Expand Down
6 changes: 6 additions & 0 deletions tools/code-tools/jcstress.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#!/bin/bash

###################################################################
# Scrtipt to build jcstress to be reused by jdk testing community #
# currenlty builds tip and latest released version #
###################################################################

# shellcheck disable=SC2035,SC2155
set -euo pipefail
WORKSPACE=$PWD
Expand Down
6 changes: 6 additions & 0 deletions tools/code-tools/jtreg.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#!/bin/bash

###################################################################
# Scrtipt to build jtreg test suite harness #
# currenlty builds tip, 5.1, 6, 6.1, 7, 7.1, 7.2 #
###################################################################

# shellcheck disable=SC2035,SC2116

set -eu
Expand Down

0 comments on commit 2b9bba8

Please sign in to comment.