Skip to content

Commit

Permalink
triggers test
Browse files Browse the repository at this point in the history
  • Loading branch information
skim1420 committed Sep 2, 2016
1 parent 70390a5 commit aa7ce70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
steps:
- name: "gcr.io/cloud-builders/dockerizer"
args:
- "gcr.io/spinnaker-1022/mdservice:0.1"
- "gcr.io/spinnaker-1022/mdservice:0.12"
images:
- "gcr.io/spinnaker-1022/mdservice:0.1"
- "gcr.io/spinnaker-1022/mdservice:0.12"
options:
requestedVerifyOption: "VERIFIED"
sourceProvenanceHash:
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
)

func hello(w http.ResponseWriter, r *http.Request) {
io.WriteString(w, "Hello world!")
io.WriteString(w, "Hello Build Triggers!!")
}

func main() {
http.HandleFunc("/", hello)
http.ListenAndServe(":8000", nil)
http.ListenAndServe(":80", nil)
}

0 comments on commit aa7ce70

Please sign in to comment.