Skip to content

Commit

Permalink
Point release
Browse files Browse the repository at this point in the history
  • Loading branch information
ivotron committed Oct 4, 2017
1 parent 379f225 commit 9000e1f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions popper/_check/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM python:2.7-alpine
RUN apk add --no-cache curl bash && \
curl -SL https://download.docker.com/linux/static/stable/x86_64/docker-17.06.2-ce.tgz | tar -xzv docker/docker && \
mv docker/docker /usr/bin && \
pip install --no-cache-dir pyaml && \
rm -r docker/
ADD check.py /
ENTRYPOINT ["/check.py"]
7 changes: 4 additions & 3 deletions popper/ci.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package main

import (
"fmt"
"io/ioutil"
"log"
"fmt"

"github.com/spf13/cobra"
)

Expand All @@ -17,15 +18,15 @@ services:
- docker
install:
- curl -O https://raw.githubusercontent.com/systemslab/popperci/master/implementations/python/docker/entrypoint.py
- curl -O https://raw.githubusercontent.com/systemslab/popper/master/popper/_check/check.py
- chmod 755 entrypoint.py
script: ./entrypoint.py
`

var ciCmd = &cobra.Command{
Use: "ci",
Short: "Generate config files for a CI system.",
Short: "Generate configuration files for CI systems.",
Long: "",
Run: func(cmd *cobra.Command, args []string) {
log.Fatalln("Can't use this subcommand directly. See 'popper help ci' for usage")
Expand Down
2 changes: 1 addition & 1 deletion popper/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/spf13/cobra"
)

var versionId = "0.5-dev"
var versionId = "0.4.1"

var versionCmd = &cobra.Command{
Use: "version",
Expand Down

0 comments on commit 9000e1f

Please sign in to comment.