Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nshmp-ws
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
ghsc
National Seismic Hazard Model Project
nshmp-ws
Commits
3a256178
Commit
3a256178
authored
4 years ago
by
Clayton, Brandon Scott
Browse files
Options
Downloads
Patches
Plain Diff
revert until nshmp-lib is stable
parent
91fd4ee6
No related branches found
No related tags found
1 merge request
!51
Revert until nshmp-lib is stable
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitlab-ci.yml
+37
-0
37 additions, 0 deletions
.gitlab-ci.yml
Dockerfile
+7
-2
7 additions, 2 deletions
Dockerfile
README.md
+20
-0
20 additions, 0 deletions
README.md
build.gradle
+12
-7
12 additions, 7 deletions
build.gradle
settings.gradle
+19
-13
19 additions, 13 deletions
settings.gradle
with
95 additions
and
22 deletions
.gitlab-ci.yml
+
37
−
0
View file @
3a256178
...
@@ -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}
-
|
-
|
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
7
−
2
View file @
3a256178
...
@@ -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
}
####
####
...
...
This diff is collapsed.
Click to expand it.
README.md
+
20
−
0
View file @
3a256178
...
@@ -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 .
```
This diff is collapsed.
Click to expand it.
build.gradle
+
12
−
7
View file @
3a256178
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
settings.gradle
+
19
−
13
View file @
3a256178
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
// })
// }
// }
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment