Skip to content
Snippets Groups Projects
Commit 3a256178 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

revert until nshmp-lib is stable

parent 91fd4ee6
No related branches found
No related tags found
1 merge request!51Revert until nshmp-lib is stable
...@@ -10,6 +10,12 @@ variables: ...@@ -10,6 +10,12 @@ variables:
JUNIT_FILES: build/test-results/test/TEST-*.xml JUNIT_FILES: build/test-results/test/TEST-*.xml
REPORTS_DIR: build/reports REPORTS_DIR: build/reports
# TODO remove once nshmp-lib is stable
FAULT_SECTIONS: nshm-fault-sections
FAULT_SECTIONS_GIT: https://gitlab-ci-token:${CI_JOB_TOKEN}@code.usgs.gov/ghsc/nshmp/${FAULT_SECTIONS}.git
NSHMP_LIB: nshmp-lib
NSHMP_LIB_GIT: https://gitlab-ci-token:${CI_JOB_TOKEN}@code.usgs.gov/ghsc/nshmp/${NSHMP_LIB}.git
stages: stages:
- test - test
- publish - publish
...@@ -29,6 +35,18 @@ stages: ...@@ -29,6 +35,18 @@ stages:
# - adjust-image-names: Update container image names # - adjust-image-names: Update container image names
#### ####
.templates: .templates:
# TODO remove once nshmp-lib is stable
nshmp-lib: &nshmp-lib |-
cd ..;
rm -rf ${NSHMP_LIB};
git clone ${NSHMP_LIB_GIT};
cd ${CI_PROJECT_NAME};
# TODO remove once nshmp-lib is stable
fault-sections: &fault-sections |-
cd ..;
rm -rf ${FAULT_SECTIONS};
git clone ${FAULT_SECTIONS_GIT};
cd ${CI_PROJECT_NAME};
adjust-image-names: &adjust-image-names |- adjust-image-names: &adjust-image-names |-
IMAGE_NAME=${IMAGE_NAME/:master/:latest}; IMAGE_NAME=${IMAGE_NAME/:master/:latest};
INTERNAL_IMAGE_NAME=${CI_REGISTRY_IMAGE}/${IMAGE_NAME}; INTERNAL_IMAGE_NAME=${CI_REGISTRY_IMAGE}/${IMAGE_NAME};
...@@ -92,6 +110,9 @@ Build Project: ...@@ -92,6 +110,9 @@ Build Project:
- branches - branches
- master@ghsc/nshmp/nshmp-ws - master@ghsc/nshmp/nshmp-ws
- tags@ghsc/nshmp/nshmp-ws - tags@ghsc/nshmp/nshmp-ws
before_script:
- *nshmp-lib
- *fault-sections
script: script:
- ./gradlew assemble - ./gradlew assemble
...@@ -106,6 +127,9 @@ Spotless Check: ...@@ -106,6 +127,9 @@ Spotless Check:
- branches - branches
- master@ghsc/nshmp/nshmp-ws - master@ghsc/nshmp/nshmp-ws
- tags@ghsc/nshmp/nshmp-ws - tags@ghsc/nshmp/nshmp-ws
before_script:
- *nshmp-lib
- *fault-sections
script: script:
- ./gradlew spotlessCheck; - ./gradlew spotlessCheck;
...@@ -120,6 +144,9 @@ Spotbugs Main: ...@@ -120,6 +144,9 @@ Spotbugs Main:
- branches - branches
- master@ghsc/nshmp/nshmp-ws - master@ghsc/nshmp/nshmp-ws
- tags@ghsc/nshmp/nshmp-ws - tags@ghsc/nshmp/nshmp-ws
before_script:
- *nshmp-lib
- *fault-sections
script: script:
- ./gradlew spotbugsMain; - ./gradlew spotbugsMain;
...@@ -134,6 +161,9 @@ Spotbugs Test: ...@@ -134,6 +161,9 @@ Spotbugs Test:
- branches - branches
- master@ghsc/nshmp/nshmp-ws - master@ghsc/nshmp/nshmp-ws
- tags@ghsc/nshmp/nshmp-ws - tags@ghsc/nshmp/nshmp-ws
before_script:
- *nshmp-lib
- *fault-sections
script: script:
- ./gradlew spotbugsTest; - ./gradlew spotbugsTest;
...@@ -154,6 +184,9 @@ Unit Tests: ...@@ -154,6 +184,9 @@ Unit Tests:
- tags@ghsc/nshmp/nshmp-ws - tags@ghsc/nshmp/nshmp-ws
coverage: '/Total.*?([0-9]{1,3})%/' coverage: '/Total.*?([0-9]{1,3})%/'
retry: 2 retry: 2
before_script:
- *nshmp-lib
- *fault-sections
script: script:
- ./gradlew check; - ./gradlew check;
- cat ${JACOCO_HTML_DIR}/index.html; - cat ${JACOCO_HTML_DIR}/index.html;
...@@ -182,6 +215,10 @@ Build Image: ...@@ -182,6 +215,10 @@ Build Image:
- *adjust-image-names - *adjust-image-names
- rm -rf ${DOCKER_DIR} - rm -rf ${DOCKER_DIR}
- apk add git; - apk add git;
- *nshmp-lib
- mv ../${NSHMP_LIB} .
- *fault-sections
- mv ../${FAULT_SECTIONS} .
script: script:
- mkdir ${DOCKER_DIR} - mkdir ${DOCKER_DIR}
- | - |
......
...@@ -34,8 +34,13 @@ WORKDIR ${builder_workdir} ...@@ -34,8 +34,13 @@ WORKDIR ${builder_workdir}
COPY . . COPY . .
RUN yum install -y java-11-openjdk which git \ RUN yum install -y java-11-openjdk which git
&& ./gradlew --no-daemon assemble \
# TODO remove once nshmp-lib is stable
RUN mv nshmp-lib ../. \
&& mv nshm-fault-sections /app/faults
RUN ./gradlew --no-daemon assemble \
&& mv ${libs_dir}/*-all.jar ${jar_file} && mv ${libs_dir}/*-all.jar ${jar_file}
#### ####
......
...@@ -95,3 +95,23 @@ http://localhost:8080/nshmp/data/fault-sections ...@@ -95,3 +95,23 @@ http://localhost:8080/nshmp/data/fault-sections
``` ```
The `PORT` should be replaced with the same value to start the container. The `PORT` should be replaced with the same value to start the container.
## Local Development
The [fault sections repository](https://code.usgs.gov/ghsc/nshmp/nshm-fault-sections)
repository is downloaded from a tagged version, see [gradle.properties](gradle.properties)
`nshmFaultSectionsTag` for tagged version used, and stored in the libs directory.
To, instead, point to a local version of the fault sections repository update the
gradle.properties file, either in this project or under `$GRADLE_USER_HOME`/gradle.properties
(defaults to `$USER_HOME/.gradle`), with the following:
```
faultSectionsEnv = DEV
```
Run `./gradlew clean` to clean up the libs directory and make a symbolinc link from the
fault sections repository to the libs directory.
Example:
```
cd libs
ln -s ../nshm-fault-sections .
```
...@@ -19,15 +19,17 @@ repositories { ...@@ -19,15 +19,17 @@ repositories {
jcenter() jcenter()
} }
git { // TODO uncomment once nshmp-lib is stable
implementation("https://code.usgs.gov/ghsc/nshmp/nshmp-lib.git", { // git {
name "nshmp-ws-dep--nshmp-lib" // implementation("https://code.usgs.gov/ghsc/nshmp/nshmp-lib.git", {
tag "v0.0.5" // name "nshmp-ws-dep--nshmp-lib"
}) // tag "v0.0.5"
} // })
// }
ext { ext {
nshmpLib = "libs/nshmp-ws-dep--nshmp-lib" // nshmpLib = "libs/nshmp-ws-dep--nshmp-lib"
nshmpLib = "../nshmp-lib"
nshmpLibGradleDir = "${nshmpLib}/gradle" nshmpLibGradleDir = "${nshmpLib}/gradle"
spotbugsDir = "${nshmpLib}/gradle" spotbugsDir = "${nshmpLib}/gradle"
spotlessDir = "${nshmpLib}/src/main/resources" spotlessDir = "${nshmpLib}/src/main/resources"
...@@ -38,6 +40,9 @@ apply from: "${nshmpLibGradleDir}/spotbugs.gradle" ...@@ -38,6 +40,9 @@ apply from: "${nshmpLibGradleDir}/spotbugs.gradle"
apply from: "${nshmpLibGradleDir}/spotless.gradle" apply from: "${nshmpLibGradleDir}/spotless.gradle"
dependencies { dependencies {
// TODO remove once nshmp-lib is stable
implementation project(":nshmp-lib")
// Micronaut // Micronaut
annotationProcessor platform("io.micronaut:micronaut-bom:${mnVersion}") annotationProcessor platform("io.micronaut:micronaut-bom:${mnVersion}")
annotationProcessor "io.micronaut:micronaut-inject-java" annotationProcessor "io.micronaut:micronaut-inject-java"
......
plugins { // TODO uncomment once nshmp-lib is stable
id "com.alexvasilkov.git-dependencies" version "2.0.1" // plugins {
} // id "com.alexvasilkov.git-dependencies" version "2.0.1"
// }
rootProject.name = "nshmp-ws" rootProject.name = "nshmp-ws"
// TODO remove once nshmp-lib is stable
include ':nshmp-lib'
project(':nshmp-lib').projectDir = new File(settingsDir, '../nshmp-lib')
def fetchFaults = properties.containsKey("faultSectionsEnv") && faultSectionsEnv == "DEV"
? false : true
git { // TODO uncomment once nshmp-lib is stable
defaultAuthGroup "nshmp" // def fetchFaults = properties.containsKey("faultSectionsEnv") && faultSectionsEnv == "DEV"
// ? false : true
if (fetchFaults) { // git {
fetch ("https://code.usgs.gov/ghsc/nshmp/nshm-fault-sections.git", { // defaultAuthGroup "nshmp"
tag nshmFaultSectionsTag
}) // if (fetchFaults) {
} // fetch ("https://code.usgs.gov/ghsc/nshmp/nshm-fault-sections.git", {
} // tag nshmFaultSectionsTag
// })
// }
// }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment