blob: a37168d84ff8122d1abdcaa97059477c885e5959 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
cd ~jenkins
git add -A
git commit -m 'Installed plugins, restarted Jenkins'
mkdir -p ~/.config/jenkins_jobs
cp /vagrant/jenkins_jobs.ini ~/.config/jenkins_jobs
pip install --user jenkins-job-builder
jenkins-job-builder update -r /vagrant/jjb
cat > .gitignore <<EOF
jobs/*/builds
jobs/*/last*
workspace/
.m2/repository/
logs/
EOF
git add -A
git commit -m 'Set up initial jobs'
|