Skip to content

Commit

Permalink
Update plugins and add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-nenashev committed Oct 19, 2018
1 parent 6238764 commit e7be3f4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
build:
docker build -t onenashev/demo-jenkins-config-as-code .

run:
docker run --rm --name ci-jenkins-io-dev -v maven-repo:/root/.m2 -v ${MY_PIPELINE_LIBRARY_DIR}:/var/jenkins_home/pipeline-library -v ${MY_OTHER_PIPELINE_LIBS_DIRS}:/var/jenkins_home/pipeline-libs -e DEV_HOST=${CURRENT_HOST} -p 8080:8080 -p 50000:50000 onenashev/demo-jenkins-config-as-code

debug:
docker run --rm --name ci-jenkins-io-dev -e DEBUG=true -p 5005:5005 -v maven-repo:/root/.m2 -v ${MY_PIPELINE_LIBRARY_DIR}:/var/jenkins_home/pipeline-library -v ${MY_OTHER_PIPELINE_LIBS_DIRS}:/var/jenkins_home/pipeline-libs -e DEV_HOST=${CURRENT_HOST} -p 8080:8080 -p 50000:50000 onenashev/demo-jenkins-config-as-code
2 changes: 1 addition & 1 deletion jenkins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jenkins:
- "Job/Configure"
- "Job/Build"
- "Job/Delete"
- "Build/Delete"
- "Run/Delete"
assignments:
- "authenticated"
- name: "@CoOwnerNoSid"
Expand Down
6 changes: 3 additions & 3 deletions plugins.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
matrix-auth:2.3
cloudbees-folder:6.4
workflow-aggregator:2.5
workflow-cps:2.54
workflow-cps:2.57
git:3.9.0
timestamper:1.8.10
yet-another-docker-plugin:0.1.0-rc47
Expand All @@ -22,6 +22,6 @@ parallel-test-executor:1.10
email-ext:2.62
jacoco:2.2.1
cobertura:1.12.1
configuration-as-code:1.0
configuration-as-code-support:1.0
configuration-as-code:1.1
configuration-as-code-support:1.1
jdk-tool:1.1

0 comments on commit e7be3f4

Please sign in to comment.