-
-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
consume property in openjdk build.xml #3039
Closed
Closed
Changes from all commits
Commits
Show all changes
52 commits
Select commit
Hold shift + click to select a range
2c6401e
ignore params if set read property
xius666 d7555ad
change
xius666 81e45e9
wrap the option into if
xius666 622cfda
wrap the get_sh_cmd in if
xius666 a0d69cf
add a printing in get.sh
xius666 befdf28
delete printing in get.sh
xius666 952a839
made change
xius666 7e6244f
made change
xius666 0e03d8d
made change
xius666 b07bf71
add complie.sh
xius666 15fc25f
export env
xius666 50bb754
add a direcotry
xius666 f157cf5
add a bash for the cmd
xius666 d1a95ab
change
xius666 e1de1e1
delete make
xius666 035c381
change typo
xius666 a31eeb7
Merge branch 'master' of https://github.com/adoptium/aqa-tests into i…
xius666 043040e
change
xius666 4a6c998
test invalid
xius666 e68cfeb
tkgrepo=empty
xius666 bf97cc2
tkgrepo=empty fix
xius666 3bfc8e0
tkgbranch=invalid
xius666 57fd129
tkgbranch=myown
xius666 4f26165
tkgbranch=sha
xius666 a1c9285
openj9repo=myown
xius666 6cc9840
default
xius666 14508e4
tkgrepo=invaid
xius666 ae5e2f4
back to default
xius666 a402927
initial version
xius666 7c98341
initial version
xius666 c547ec1
fix bug
xius666 0605176
fix close tag
xius666 62bf322
fix close tag
xius666 ca3d6d3
Merge pull request #1 from xius666/issue2918
xius666 5570c2a
fix bug
xius666 e396757
fix bug
xius666 e9a9a64
fix bug
xius666 70c2a6d
fix bug
xius666 be8e3ee
test
xius666 ca8decd
test
xius666 d0feab6
test
xius666 30c79a8
test
xius666 2aae9d2
test
xius666 e2bf927
fix export
xius666 472763f
fix dir
xius666 f9afc20
fix make
xius666 de9b76f
fix make
xius666 2bd368f
fix
xius666 996c7b0
finish
xius666 e4952c8
Merge branch 'issue2918' of https://github.com/xius666/aqa-tests into…
xius666 e563a55
merge
xius666 f215fbe
remove echo
xius666 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
usage () | ||
{ | ||
echo ' [--USE_TESTENV_PROPERTIES ]: use testenv.properties or not' | ||
} | ||
|
||
if [ $USE_TESTENV_PROPERTIES == true ];then | ||
while read line; do | ||
export $line | ||
done < ./testenv/testenv.properties | ||
fi | ||
cd ./TKG; | ||
make compile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you rebase the PR? USE_TESTENV_PROPERTIES change is already delivered.