Skip to content

Commit 33f122b

Browse files
justineechengkwan-ibm
authored andcommitted
Multipane (#52)
* removed indent * Updating getting-started to multipane * Changing all full files to be in the code_column * Trying blank subsections * . as a subsection * Trying to make a blank ssubsection * Updates to multipane * Adding linenums * Adding linenums * Removed 'to be published' * Moved linenums * Updated sections and bolded * Adding inline hotspots and cleaning up existing commands * Updated multipane * Updated multipane * Removed code_command 'replace' and chnaged it to 'add' the feature line for server.xml * One line hotspotting and changed how to add the logging element * updated new line * Updated mentions of elements * Updated multipane * Update Readme, quiet travis long, update failsafe plugin * Minor README update for hotspots * Updating hotspot and removing feature version * Updating formatting * Updating hotspots * Updating hotspots * Adding multiple files to section * Minor README changes * Updating hotspots * Updating hotspots * Revert "Minor README changes" This reverts commit e5ab8ff. * Revert "Revert "Minor README changes"" This reverts commit 9ab3ef0. * Updating hotspots * Formatting README * Add guide author * add file=1 * Updating plugins * Bolding code commands * Adding role=command * Fixing spacing in server.xml and typo in README * Fixing spacing in server.xml * Server.xml formatting in start * Server.xml formatting in start * Removed finish.adoc include from README.adoc * Adding docker commands to travis * Updating dependency order * JDK 11 pom update * jdk update * Updated edit files to replace files and added tags to server.xml * Updated README * Updated README * Updated README * Updated README * Updated rEADME * Updated README * Updated README with [hotspot] changes * Updated README with link in new tab changes * Updated README with link in new tab changes * Updated README * Addressed issue #57 * Change the guide attribution to point to master
1 parent 288b427 commit 33f122b

File tree

6 files changed

+349
-261
lines changed

6 files changed

+349
-261
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
language: java
2+
services:
3+
- docker
24
before_script:
35
- unset _JAVA_OPTIONS
46
- cd finish
57
script:
6-
- mvn clean install
7-
- serverName=$(target/liberty/wlp/bin/server list | cut -d '.' -f2| tr -d '\n');
8+
- mvn -q clean install
9+
- mvn -q clean package -P docker-image
10+
- docker run -d --name gettingstarted-app -p 9080:9080 openliberty-getting-started:1.0-SNAPSHOT
11+
- sleep 60
12+
- status="$(curl --write-out "%{http_code}\n" --silent --output /dev/null "http://localhost:9080/system/properties")"; if [ "$status" == "200" ]; then echo ENDPOINT OK; else echo "$status"; echo ENDPOINT NOT OK; exit 1; fi;
13+
- docker stop gettingstarted-app && docker rm gettingstarted-app
14+
- serverName=$(target/liberty/wlp/bin/server list | cut -d '.' -f2| tr -d '\n');
815
- build=$(grep "Open Liberty" target/liberty/wlp/usr/servers/"$serverName"/logs/console.log
916
| cut -d' ' -f5 | cut -d')' -f1 ); release=$( echo "$build" | cut -d'/' -f1); number=$(
1017
echo "$build" | cut -d'/' -f2); ol_jv=$(grep -i "on java" target/liberty/wlp/usr/servers/"$serverName"/logs/console.log);

0 commit comments

Comments
 (0)