Skip to content

Commit

Permalink
Move env variables outsude docker build #PR2
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaitsev committed Dec 12, 2014
1 parent 3140b77 commit 6609d09
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
20 changes: 9 additions & 11 deletions shared/build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -445,25 +445,16 @@ func (b *Builder) writeDockerfile(dir string) error {
// is the "ubuntu" user, since all build images
// inherit from the ubuntu cloud ISO
dockerfile.WriteUser("ubuntu")
dockerfile.WriteEnv("HOME", "/home/ubuntu")
dockerfile.WriteEnv("LANG", "en_US.UTF-8")
dockerfile.WriteEnv("LANGUAGE", "en_US:en")
dockerfile.WriteEnv("LOGNAME", "ubuntu")
dockerfile.WriteEnv("TERM", "xterm")
dockerfile.WriteEnv("SHELL", "/bin/bash")
dockerfile.WriteEnv("HOME", "/home/ubuntu")
dockerfile.WriteRun("sudo chown -R ubuntu:ubuntu /var/cache/drone")
dockerfile.WriteRun("sudo chown -R ubuntu:ubuntu /usr/local/bin/drone")
default:
// all other images are assumed to use
// the root user.
dockerfile.WriteUser("root")
dockerfile.WriteEnv("HOME", "/root")
dockerfile.WriteEnv("LANG", "en_US.UTF-8")
dockerfile.WriteEnv("LANGUAGE", "en_US:en")
dockerfile.WriteEnv("LOGNAME", "root")
dockerfile.WriteEnv("TERM", "xterm")
dockerfile.WriteEnv("SHELL", "/bin/bash")
dockerfile.WriteEnv("GOPATH", "/var/cache/drone")
dockerfile.WriteEnv("HOME", "/root")
}

dockerfile.WriteAdd("proxy.sh", "/etc/drone.d/")
Expand All @@ -479,6 +470,13 @@ func (b *Builder) writeDockerfile(dir string) error {
func (b *Builder) writeBuildScript(dir string) error {
f := buildfile.New()

// add environment variables for user env
f.WriteEnv("LANG", "en_US.UTF-8")
f.WriteEnv("LANGUAGE", "en_US:en")
f.WriteEnv("TERM", "xterm")
f.WriteEnv("GOPATH", "/var/cache/drone")
f.WriteEnv("SHELL", "/bin/bash")

// add environment variables about the build
f.WriteEnv("CI", "true")
f.WriteEnv("DRONE", "true")
Expand Down
5 changes: 5 additions & 0 deletions shared/build/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,11 @@ func TestWriteBuildScript(t *testing.T) {
}

f := buildfile.New()
f.WriteEnv("LANG", "en_US.UTF-8")
f.WriteEnv("LANGUAGE", "en_US:en")
f.WriteEnv("TERM", "xterm")
f.WriteEnv("GOPATH", "/var/cache/drone")
f.WriteEnv("SHELL", "/bin/bash")
f.WriteEnv("CI", "true")
f.WriteEnv("DRONE", "true")
f.WriteEnv("DRONE_REMOTE", "git://github.com/drone/drone.git")
Expand Down

0 comments on commit 6609d09

Please sign in to comment.