close statement after creating schema #5
Merged
Travis CI / Travis CI - Pull Request
succeeded
Dec 23, 2024 in 59s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #5 close statement after creating schema.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Java |
Operating System | Linux (Xenial) |
JDK Version | openjdk8 |
Build Configuration
{
"language": "java",
"os": [
"linux"
],
"dist": "xenial",
"jdk": [
"openjdk8"
],
"branches": {
"only": [
"master",
"stable"
]
},
"addons": {
"postgresql": "9.6",
"apt": {
"packages": [
"postgresql-9.6-postgis-2.4"
]
}
},
"install": [
"true"
],
"before_script": [
"psql -c 'create database ehisqlgen;' -U postgres",
"psql -c 'select version();' -d ehisqlgen -U postgres",
"psql -c 'create extension postgis;' -d ehisqlgen -U postgres",
"psql -c 'create extension \"uuid-ossp\";' -d ehisqlgen -U postgres",
"psql -c 'select postgis_full_version();' -d ehisqlgen -U postgres"
],
"script": [
"./gradlew -Ddburl=jdbc:postgresql:ehisqlgen -Ddbusr=postgres build"
],
"after_failure": [
"cat build/junitreport/TEST-*.txt"
],
"deploy": [
{
"provider": "script",
"skip_cleanup": true,
"script": "./gradlew -Drepos_pwd=${repos_pwd} -Drepos_usr=jql_jars-INTE upload",
"on": {
"branch": [
"master"
]
}
},
{
"provider": "script",
"skip_cleanup": true,
"script": "./gradlew -Drepos_pwd=${repos_pwd} -Drepos_usr=jql_jars-INTE '-Drelease=' upload",
"on": {
"branch": [
"stable"
]
}
}
]
}
Loading