Skip to content

Commit

Permalink
Merge branch 'master' of github.com:GoogleCloudPlatform/k8s-container…
Browse files Browse the repository at this point in the history
…-builder into env-replacement
  • Loading branch information
Priya Wadhwa committed Mar 26, 2018
2 parents dbb0774 + d9c3104 commit a82b96e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@ test: out/executor out/kbuild
.PHONY: integration-test
integration-test: out/executor out/kbuild
@ ./integration-test.sh

.PHONY: images
images: out/executor out/kbuild
docker build -t $(REGISTRY)/executor:latest -f deploy/Dockerfile .
File renamed without changes.
3 changes: 2 additions & 1 deletion integration_tests/integration_test_yaml.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package main

import (
"fmt"

"gopkg.in/yaml.v2"
)

Expand Down Expand Up @@ -116,7 +117,7 @@ func main() {
// Build executor image
buildExecutorImage := step{
Name: dockerImage,
Args: []string{"build", "-t", executorImage, "-f", "integration_tests/executor/Dockerfile", "."},
Args: []string{"build", "-t", executorImage, "-f", "deploy/Dockerfile", "."},
}
y := testyaml{
Steps: []step{containerDiffStep, containerDiffPermissions, structureTestsStep, structureTestPermissions, buildExecutorImage},
Expand Down

0 comments on commit a82b96e

Please sign in to comment.