Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.9.13 #130

Merged
merged 3 commits into from
Sep 7, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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