Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-cloud-netflix
Commits
3a5e12b8
Commit
3a5e12b8
authored
Mar 19, 2018
by
Ryan Baxter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding circle 2.0 config
parent
d4e7fdef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
config.yml
.circleci/config.yml
+41
-0
No files found.
.circleci/config.yml
0 → 100644
View file @
3a5e12b8
version
:
2
jobs
:
build
:
docker
:
-
image
:
springcloud/pipeline-base
user
:
appuser
environment
:
_JAVA_OPTIONS
:
"
-Xms1024m
-Xmx2048m"
TERM
:
dumb
branches
:
ignore
:
-
gh-pages
# list of branches to ignore
resource_class
:
large
steps
:
-
checkout
-
restore_cache
:
key
:
sc-netflix-{{ .Branch }}
-
run
:
name
:
"
Download
dependencies"
command
:
./mvnw -s .settings.xml -U --fail-never dependency:go-offline ||
true
-
save_cache
:
key
:
sc-netflix-{{ .Branch }}
paths
:
-
~/.m2
-
run
:
name
:
"
Running
build"
command
:
./mvnw -s .settings.xml clean org.jacoco:jacoco-maven-plugin:prepare-agent install -U -P sonar -nsu --batch-mode -Dmaven.test.redirectTestOutputToFile=true -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
-
run
:
name
:
"
Aggregate
test
results"
when
:
always
command
:
|
mkdir -p ~/junit/
find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} ~/junit/ \;
bash <(curl -s https://codecov.io/bash)
-
store_artifacts
:
path
:
~/junit/
destination
:
artifacts
-
store_test_results
:
path
:
~/junit/
destination
:
testartifacts
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment