Skip to content
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

close statement after creating schema #5

Merged
merged 1 commit into from
Jan 6, 2025

close statement after creating schema

74ffe6f
Select commit
Loading
Failed to load commit list.
Merged

close statement after creating schema #5

close statement after creating schema
74ffe6f
Select commit
Loading
Failed to load commit list.
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"
        ]
      }
    }
  ]
}