Feature/issue212 #213
Merged
Feature/issue212 #213
Travis CI / Travis CI - Pull Request
required action
Sep 28, 2023 in 3m 47s
Build Errored
The build errored, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #213 Feature/issue212.
Any changes that have been made to the dev 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 | Groovy |
Operating System | Linux (Bionic) |
JDK Version | openjdk11 |
Build Configuration
{
"language": "groovy",
"os": [
"linux"
],
"dist": "bionic",
"jdk": [
"openjdk11"
],
"sudo": false,
"addons": {
"chrome": "stable"
},
"branches": {
"only": [
"master",
"dev",
"/^feature\\/.*$/",
"/^hotfix\\/.*$/",
"grails3",
"devg3",
"grails4",
"grails4-bs-branch",
"grails5"
]
},
"before_cache": [
"rm -f $HOME/.gradle/caches/modules-2/modules-2.lock",
"rm -fr $HOME/.gradle/caches/*/plugin-resolution/"
],
"cache": {
"directories": [
"$HOME/.m2",
"$HOME/.gradle/caches/",
"$HOME/.gradle/wrapper/"
]
},
"before_install": [
"export TZ=Australia/Canberra",
"rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION"
],
"before_script": [
"export DETECT_CHROMEDRIVER_VERSION=true",
"cd $TRAVIS_BUILD_DIR",
"npm install",
"npm run-script package-turf"
],
"script": [
"cd $TRAVIS_BUILD_DIR",
"node_modules/karma/bin/karma start karma.conf.js --single-run --browsers ChromeHeadless"
],
"after_success": [
"[ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ] && travis_retry ./gradlew clean && ./gradlew publish"
],
"env": [
"global={:TRAVIS_NODE_VERSION=>\"\\\"15.4.0\\\"\"}=TRAVIS_DEPLOY_USERNAME=[secure]=TRAVIS_DEPLOY_PASSWORD=[secure]"
]
}
Loading