From 2dd77f4d1f74dae37cc427e71d8babde8b58245d Mon Sep 17 00:00:00 2001 From: Carl Verbiest Date: Tue, 29 Oct 2019 10:19:03 -0400 Subject: [PATCH 1/3] Add initial build.xml --- build.xml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 build.xml diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..dcbe0c3 --- /dev/null +++ b/build.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 784bbde3b5f6180ed71feee68cd0aa04c1c2752f Mon Sep 17 00:00:00 2001 From: cverbiest Date: Tue, 29 Oct 2019 10:45:30 -0400 Subject: [PATCH 2/3] Add dist step and Jenkinsfile --- Jenkinsfile | 19 +++++++++++++++++++ build.xml | 7 +++++++ 2 files changed, 26 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..14643a6 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,19 @@ +pipeline { + agent { label 'Node02' } + options { + buildDiscarder(logRotator(numToKeepStr:'10')) + timeout(time: 10, unit: 'MINUTES') + skipDefaultCheckout() + } + stages { + stage ('Build') { + steps { + checkout([$class: 'GitSCM', branches: scm.branches, extensions: scm.extensions + [[$class: 'CleanCheckout']], userRemoteConfigs: scm.userRemoteConfigs]) + withEnv(["DLC=${tool name: 'OpenEdge-12.1', type: 'openedge'}", "JAVA_HOME=${tool name: 'JDK8', type: 'jdk'}"]) { + bat "%DLC%\\ant\\bin\\ant -DDLC=%DLC% -lib %DLC%\\pct\\pct.jar init build dist" + } + archiveArtifacts artifacts: 'target/DataDigger.zip' + } + } + } +} \ No newline at end of file diff --git a/build.xml b/build.xml index dcbe0c3..578973b 100644 --- a/build.xml +++ b/build.xml @@ -27,4 +27,11 @@ + + + + + + + \ No newline at end of file From 9b836a584ff0a0fc90dc045407121f42fc36b14c Mon Sep 17 00:00:00 2001 From: cverbiest Date: Tue, 29 Oct 2019 10:52:29 -0400 Subject: [PATCH 3/3] Red pants --- wAbout.w | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wAbout.w b/wAbout.w index e6ee75f..b6f7deb 100644 --- a/wAbout.w +++ b/wAbout.w @@ -444,7 +444,7 @@ PROCEDURE initializeObject : edChangelog:FONT = getFont('Fixed'). btnDataDigger:LOAD-IMAGE(getImagePath('box.gif')). - imgPlayer:LOAD-IMAGE(getImagePath('player.gif')). + imgPlayer:LOAD-IMAGE(getImagePath('player2.gif')). imgBall:LOAD-IMAGE(getImagePath('ball.gif')). /* Set version name */ @@ -506,4 +506,5 @@ PROCEDURE justWait : END PROCEDURE. /* justWait */ /* _UIB-CODE-BLOCK-END */ -&ANALYZE-RESUME \ No newline at end of file +&ANALYZE-RESUME +