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
Merge requests
!219
Cleanup
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Cleanup
ghsc/users/bclayton/nshmp/nshmp-ws:cleanup
into
main
Overview
0
Commits
7
Pipelines
0
Changes
39
Merged
Clayton, Brandon Scott
requested to merge
ghsc/users/bclayton/nshmp/nshmp-ws:cleanup
into
main
1 year ago
Overview
0
Commits
7
Pipelines
0
Changes
39
Expand
Remove fault, gps, gulf, and util services.
Only keep gmm.
0
0
Merge request reports
Compare
main
version 2
fac49d12
1 year ago
version 1
a234f7a0
1 year ago
main (base)
and
latest version
latest version
f9f2b133
7 commits,
1 year ago
version 2
fac49d12
6 commits,
1 year ago
version 1
a234f7a0
5 commits,
1 year ago
39 files
+
7
−
132669
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
39
Search (e.g. *.vue) (Ctrl+P)
gradle/fault-sections.gradle deleted
100644 → 0
+
0
−
43
Options
apply
plugin:
"de.undercouch.download"
ext
{
archiveUrl
=
"https://code.usgs.gov/ghsc/nshmp/nshm-fault-sections/-/archive"
faultsDir
=
"fault-sections"
;
}
task
downloadFaultSections
()
{
doLast
{
// Download and unzip nshm-fault-sections tag 1.1
def
zipFile1p1
=
new
File
(
faultsDir
,
"nshm-fault-sections-1.1.zip"
)
download
.
run
{
src
"${archiveUrl}/1.1/nshm-fault-sections-1.1.zip"
dest
zipFile1p1
}
copy
{
from
zipTree
(
zipFile1p1
)
into
faultsDir
}
delete
{
delete
zipFile1p1
}
// Download and unzip nshm-fault-sections tag 1.1
def
zipFile1p2
=
new
File
(
faultsDir
,
"nshm-fault-sections-1.2.zip"
)
download
.
run
{
src
"${archiveUrl}/1.2/nshm-fault-sections-1.2.zip"
dest
zipFile1p2
}
copy
{
from
zipTree
(
zipFile1p2
)
into
faultsDir
}
delete
{
delete
zipFile1p2
}
}
}
task
faultSectionsClean
(
type:
Delete
)
{
delete
faultsDir
}
clean
.
dependsOn
faultSectionsClean
Loading