Skip to content

Commit

Permalink
Merge pull request #130 from viktorbenei/master
Browse files Browse the repository at this point in the history
v0.9.13
  • Loading branch information
viktorbenei committed Sep 7, 2015
2 parents e722bdb + 1823a31 commit 4d134ad
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 35 deletions.
29 changes: 16 additions & 13 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
FROM ubuntu:14.04.2
FROM golang:1.5-wheezy

ENV PROJ_NAME stepman

RUN apt-get update

RUN DEBIAN_FRONTEND=noninteractive apt-get -y install git mercurial golang
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install git mercurial curl rsync ruby

RUN mkdir /go
RUN mkdir /go/bin
RUN mkdir -p /go/src/github.com/bitrise-io/stepman
RUN export GOPATH=/go
# From the official Golang Dockerfile
# https://github.com/docker-library/golang/blob/master/1.4/Dockerfile
RUN mkdir -p /go/src /go/bin && chmod -R 777 /go
ENV GOPATH /go
RUN export PATH=$PATH:$GOPATH/bin
ENV PATH $PATH:$GOPATH/bin

WORKDIR /go/src/github.com/bitrise-io/stepman
ENV PATH /go/bin:$PATH

COPY . /go/src/github.com/bitrise-io/stepman
RUN mkdir -p /go/src/github.com/bitrise-io/$PROJ_NAME
COPY . /go/src/github.com/bitrise-io/$PROJ_NAME

RUN go get ./...
WORKDIR /go/src/github.com/bitrise-io/$PROJ_NAME
# godep
RUN go get -u github.com/tools/godep
RUN godep restore
# install
RUN go install

CMD stepman --version
CMD $PROJ_NAME --version
21 changes: 12 additions & 9 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions _changelogs/0.9.13.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Changes

* __NEW__ command : `stepman step-info` which prints a JSON information about the specified step - useful for tools.
* `stepman audit` __fix__ : better validation.
* internal revisions, mainly for better data validation.


## Install

To install this version, run the following commands (in a bash shell):

```
curl -L https://github.com/bitrise-io/stepman/releases/download/0.9.13/stepman-$(uname -s)-$(uname -m) > /usr/local/bin/stepman
```

Then:

```
chmod +x /usr/local/bin/stepman
```
2 changes: 1 addition & 1 deletion bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ workflows:
set -v
set -e
rm -rf ./Godeps
godep save
godep save ./...
ci:
steps:
- script:
Expand Down

0 comments on commit 4d134ad

Please sign in to comment.