This website works better with JavaScript.
Home
Explore
Help
Sign In
brennen
/
blubber
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Compare commits
merge into: brennen:master
brennen:master
brennen:zuultest
...
pull from: brennen:zuultest
brennen:master
brennen:zuultest
1 Commits
master
...
zuultest
Author
SHA1
Message
Date
Brennen Bearnes
3a614c742d
Add test .zuul.yaml and playbooks/
Change-Id: I9e56debe21992000dd8061cfbc09f052c7408150
5 years ago
5 changed files
with
63 additions
and
0 deletions
Split View
Diff Options
Show Stats
+19
-0
.zuul.yaml
+26
-0
playbooks/blubber-build-ubuntu.yaml
+8
-0
playbooks/blubber-build.yaml
+5
-0
playbooks/blubber-test.yaml
+5
-0
playbooks/testjob.yaml
+ 19
- 0
.zuul.yaml
View File
@ -0,0 +1,19 @@
-
job:
name
:
blubber-build
run
:
playbooks/blubber-build.yaml
-
job:
name
:
blubber-test
run
:
playbooks/blubber-test.yaml
-
project:
check:
jobs:
-
blubber-build
-
blubber-test
gate:
jobs:
-
blubber-build
-
blubber-test
+ 26
- 0
playbooks/blubber-build-ubuntu.yaml
View File
@ -0,0 +1,26 @@
# ansible!
-
hosts
:
all
environment:
GOPATH=/root
tasks:
-
debug:
msg
:
Building Blubber.
-
name
:
Install build and test dependencies
apt:
name
:
"{{ packages }}"
update_cache
:
yes
vars:
packages:
-
golang
-
golint
-
build-essential
-
tree
-
git
-
name
:
Run tree and output
# command: ls -lah src
command
:
tree src
register
:
out
-
debug
:
var=out.stdout_lines
-
make:
chdir
:
src/gerrit/blubber
+ 8
- 0
playbooks/blubber-build.yaml
View File
@ -0,0 +1,8 @@
# ansible!
-
hosts
:
all
tasks:
-
debug:
msg
:
Building Blubber.
-
make:
chdir
:
src/gerrit/blubber
+ 5
- 0
playbooks/blubber-test.yaml
View File
@ -0,0 +1,5 @@
# ansible!
-
hosts
:
all
tasks:
-
debug:
msg
:
Running Blubber tests.
+ 5
- 0
playbooks/testjob.yaml
View File
@ -0,0 +1,5 @@
# ansible!
-
hosts
:
all
tasks:
-
debug:
msg
:
Hello world! Hey!
Write
Preview
Loading…
Cancel
Save