-
Notifications
You must be signed in to change notification settings - Fork 32
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
Java edits for kb-sdk 1.3 #350
Merged
MrCreosote
merged 9 commits into
kbase:develop
from
ialarmedalien:java_edits_for_kb_sdk_1.3
Jun 19, 2020
Merged
Changes from 3 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
35e7479
Whitespace changes only: removing trailing spaces, replacing tabs wit…
ialarmedalien 8d0e981
Typo in error message
ialarmedalien 2a7474a
Adding build date/time to kb-sdk. Failing earlier in kb-sdk test.
ialarmedalien 7e58f55
Adding actions file
ialarmedalien 835b9cc
Adding in Java example generate/test to github actions; DRYing out re…
ialarmedalien 9ac1aba
Updating actions to create a build/test matrix. Report version when s…
ialarmedalien 2384e3b
Updating release notes with more specific details
ialarmedalien 48f8e29
Reworded release notes message.
ialarmedalien c3e81fb
Die if the git.properties file cannot be found
ialarmedalien 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,5 +44,3 @@ script: | |
- cd MyContigFilter | ||
- make | ||
- kb-sdk validate | ||
|
||
|
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 |
---|---|---|
|
@@ -49,7 +49,7 @@ | |
</condition> | ||
<!-- Properties in ant are immutable, so the following assignment will only take place if jardir was not set above. --> | ||
<property name="jardir" location="${env.JENKINS_JARS_MODULE_PATH}/lib/jars"/> | ||
|
||
<!-- KBASE_COMMON_JAR should come from Makefile because of "make bin" mode support --> | ||
<condition property="commonjar" value="${KBASE_COMMON_JAR}"> | ||
<and> | ||
|
@@ -102,7 +102,7 @@ | |
</target> | ||
|
||
|
||
|
||
<tstamp/> | ||
<target name="compile" depends="init" description="compile the source"> | ||
<fail message="KBase common jar is not set"> | ||
<condition> | ||
|
@@ -116,7 +116,8 @@ | |
<echo file="${src}/us/kbase/mobu/git.properties">### PLEASE DO NOT CHANGE THIS FILE MANUALLY! ### | ||
giturl=${git.url} | ||
branch=${git.branch} | ||
commit=${git.commit}</echo> | ||
commit=${git.commit} | ||
build_timestamp=${DSTAMP}-${TSTAMP}</echo> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add date and time to the |
||
<echo>Compiling with jar directory: ${jardir}</echo> | ||
<javac destdir="${classes}" srcdir="${src}" includeantruntime="false" debug="true" classpathref="compile.classpath" target="1.7" source="1.7" /> | ||
<!-- Copy resource files--> | ||
|
@@ -205,7 +206,7 @@ echo $pid > $DIR/pid.txt | |
</echo> | ||
<chmod file="${ee.dir}/${ee.start.script}" perm="a+x"/> | ||
<echo>Successfully built: ${ee.dir}/${ee.start.script}</echo> | ||
|
||
<echo file="${ee.dir}/${ee.stop.script}">#!/bin/bash | ||
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | ||
kill $(<"$DIR/pid.txt") | ||
|
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.
Timestamp