-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed Java 8 support on Windows #131
This also adds some new integration tests for installers
- Loading branch information
Showing
32 changed files
with
805 additions
and
27 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ installer/jdeploy-bundle | |
cli/bin | ||
tests/projects/*/jdeploy | ||
./jdeploy | ||
#./installer/tests/*/mock_launcher* |
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
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
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,15 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )" | ||
function test_shellmarks() { | ||
cd $SCRIPTPATH | ||
bash test_install_single_project.sh shellmarks --build --smoke --uninstall --uninstall-smoke | ||
} | ||
|
||
function test_snapcodejava() { | ||
cd $SCRIPTPATH | ||
bash test_install_single_project.sh snapcodejava --smoke --uninstall --uninstall-smoke | ||
} | ||
|
||
test_shellmarks | ||
test_snapcodejava |
Oops, something went wrong.