Skip to content

Commit

Permalink
Bump version to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
michelvocks committed Feb 23, 2019
1 parent 3f5c4c3 commit d37e5f8
Show file tree
Hide file tree
Showing 12 changed files with 44 additions and 22 deletions.
24 changes: 19 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ dockers:
image_templates:
- "gaiapipeline/gaia:latest"
- "gaiapipeline/gaia:{{ .Tag }}"
binary: gaia-linux-amd64
binaries:
- gaia-linux-amd64
dockerfile: docker/Dockerfile
extra_files:
- docker/docker-entrypoint.sh
Expand All @@ -32,15 +33,17 @@ dockers:
image_templates:
- "gaiapipeline/gaia:latest-go"
- "gaiapipeline/gaia:{{ .Tag }}-go"
binary: gaia-linux-amd64
binaries:
- gaia-linux-amd64
dockerfile: docker/Dockerfile.golang
extra_files:
- docker/docker-entrypoint.sh
-
image_templates:
- "gaiapipeline/gaia:latest-java"
- "gaiapipeline/gaia:{{ .Tag }}-java"
binary: gaia-linux-amd64
binaries:
- gaia-linux-amd64
dockerfile: docker/Dockerfile.java
extra_files:
- docker/docker-entrypoint.sh
Expand All @@ -49,15 +52,26 @@ dockers:
image_templates:
- "gaiapipeline/gaia:latest-python"
- "gaiapipeline/gaia:{{ .Tag }}-python"
binary: gaia-linux-amd64
binaries:
- gaia-linux-amd64
dockerfile: docker/Dockerfile.python
extra_files:
- docker/docker-entrypoint.sh
-
image_templates:
- "gaiapipeline/gaia:latest-cpp"
- "gaiapipeline/gaia:{{ .Tag }}-cpp"
binary: gaia-linux-amd64
binaries:
- gaia-linux-amd64
dockerfile: docker/Dockerfile.cpp
extra_files:
- docker/docker-entrypoint.sh
-
image_templates:
- "gaiapipeline/gaia:latest-ruby"
- "gaiapipeline/gaia:{{ .Tag }}-ruby"
binaries:
- gaia-linux-amd64
dockerfile: docker/Dockerfile.ruby
extra_files:
- docker/docker-entrypoint.sh
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ RUN mkdir -p /usr/share/maven /usr/share/maven/ref \
ENV MAVEN_HOME /usr/share/maven
ENV MAVEN_CONFIG "$USER_HOME_DIR/.m2"

COPY settings-docker.xml /usr/share/maven/ref/
COPY docker/settings-docker.xml /usr/share/maven/ref/
# --------------- End Maven Part ---------------

# --------------- Start C++ Part ---------------
Expand Down Expand Up @@ -253,7 +253,7 @@ VOLUME [ "${GAIA_HOMEPATH}" ]
EXPOSE ${GAIA_PORT}

# Copy entry point script
COPY docker-entrypoint.sh /usr/local/bin/
COPY docker/docker-entrypoint.sh /usr/local/bin/

# Start gaia
ENTRYPOINT [ "docker-entrypoint.sh" ]
2 changes: 1 addition & 1 deletion docker/Dockerfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ VOLUME [ "${GAIA_HOMEPATH}" ]
EXPOSE ${GAIA_PORT}

# Copy entry point script
COPY docker-entrypoint.sh /usr/local/bin/
COPY docker/docker-entrypoint.sh /usr/local/bin/

# Start gaia
ENTRYPOINT [ "docker-entrypoint.sh" ]
2 changes: 1 addition & 1 deletion docker/Dockerfile.golang
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ VOLUME [ "${GAIA_HOMEPATH}" ]
EXPOSE ${GAIA_PORT}

# Copy entry point script
COPY docker-entrypoint.sh /usr/local/bin/
COPY docker/docker-entrypoint.sh /usr/local/bin/

# Start gaia
ENTRYPOINT [ "docker-entrypoint.sh" ]
2 changes: 1 addition & 1 deletion docker/Dockerfile.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
EXPOSE ${GAIA_PORT}

# Copy entry point script
COPY docker-entrypoint.sh /usr/local/bin/
COPY docker/docker-entrypoint.sh /usr/local/bin/

# Start gaia
ENTRYPOINT [ "docker-entrypoint.sh" ]
2 changes: 1 addition & 1 deletion docker/Dockerfile.python
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ VOLUME [ "${GAIA_HOMEPATH}" ]
EXPOSE ${GAIA_PORT}

# Copy entry point script
COPY docker-entrypoint.sh /usr/local/bin/
COPY docker/docker-entrypoint.sh /usr/local/bin/

# Start gaia
ENTRYPOINT [ "docker-entrypoint.sh" ]
2 changes: 1 addition & 1 deletion docker/Dockerfile.ruby
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ VOLUME [ "${GAIA_HOMEPATH}" ]
EXPOSE ${GAIA_PORT}

# Copy entry point script
COPY docker-entrypoint.sh /usr/local/bin/
COPY docker/docker-entrypoint.sh /usr/local/bin/

# Start gaia
ENTRYPOINT [ "docker-entrypoint.sh" ]
10 changes: 3 additions & 7 deletions frontend/package-lock.json

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

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gaia",
"version": "0.2.2",
"version": "0.2.3",
"description": "Build powerful pipelines in any programming language.",
"repository": "gaia-pipeline/gaia",
"homepage": "https://github.com/gaia-pipeline/gaia",
Expand Down
4 changes: 4 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
module github.com/gaia-pipeline/gaia

require (
github.com/GeertJohan/go.incremental v0.0.0-20161212213043-1172aab96510 // indirect
github.com/GeertJohan/go.rice v0.0.0-20181229193832-0af3f3b09a0a
github.com/akavel/rsrc v0.0.0-20170831122431-f6a15ece2cfd // indirect
github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7 // indirect
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 // indirect
github.com/boltdb/bolt v1.3.1 // indirect
Expand All @@ -22,13 +24,15 @@ require (
github.com/hashicorp/go-plugin v0.0.0-20180331002553-e8d22c780116
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/jessevdk/go-flags v1.4.0 // indirect
github.com/kevinburke/ssh_config v0.0.0-20180317175531-9fc7bb800b55 // indirect
github.com/labstack/echo v3.3.10+incompatible
github.com/labstack/gommon v0.0.0-20180613044413-d6898124de91 // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.3 // indirect
github.com/mitchellh/go-homedir v0.0.0-20180801233206-58046073cbff // indirect
github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 // indirect
github.com/nkovacs/streamquote v0.0.0-20170412213628-49af9bddb229 // indirect
github.com/oklog/run v1.0.0 // indirect
github.com/pelletier/go-buffruneio v0.2.0 // indirect
github.com/pkg/errors v0.8.1
Expand Down
8 changes: 8 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
github.com/GeertJohan/go.incremental v0.0.0-20161212213043-1172aab96510 h1:XKmpFaGpsBo5B7NC6RxawBYk6BFi0a6fw03J5PYW/9g=
github.com/GeertJohan/go.incremental v0.0.0-20161212213043-1172aab96510/go.mod h1:0K8QLSiwClOppBKLLSRX1sFvYdX5/fWqAZkjboOEzak=
github.com/GeertJohan/go.rice v0.0.0-20181229193832-0af3f3b09a0a h1:QgnJzkfb29JXtLXJN8alxzPWZhiNcAYZOa06dU5O46w=
github.com/GeertJohan/go.rice v0.0.0-20181229193832-0af3f3b09a0a/go.mod h1:DgrzXonpdQbfN3uYaGz1EG4Sbhyum/MMIn6Cphlh2bw=
github.com/akavel/rsrc v0.0.0-20170831122431-f6a15ece2cfd h1:yumR8733CaQ3P76MFbIbBKdrJmy4EqnQ5DIhqq8gq2Q=
github.com/akavel/rsrc v0.0.0-20170831122431-f6a15ece2cfd/go.mod h1:2+aQMrY0hBFBaIr2xxnZ/ctfwnYmMRMbTczYLAC34v4=
github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7 h1:uSoVVbwJiQipAclBbw+8quDsfcvFjOpI5iCf4p/cqCs=
github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs=
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 h1:kFOfPq6dUM1hTo4JG6LR5AXSUEsOjtdm0kw0FtQtMJA=
Expand Down Expand Up @@ -47,6 +51,8 @@ github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb h1:b5rjCoWHc7eqmAS
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb/go.mod h1:+NfK9FKeTrX5uv1uIXGdwYDTeHna2qgaIlx54MXqjAM=
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A=
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo=
github.com/jessevdk/go-flags v1.4.0 h1:4IU2WS7AumrZ/40jfhf4QVDMsQwqA7VEHozFRrGARJA=
github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=
github.com/kevinburke/ssh_config v0.0.0-20180317175531-9fc7bb800b55 h1:S38dC4mEwxdw/U41+97VWdbun8mTcTjwg5Ujfg8QPME=
github.com/kevinburke/ssh_config v0.0.0-20180317175531-9fc7bb800b55/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
Expand All @@ -67,6 +73,8 @@ github.com/mitchellh/go-homedir v0.0.0-20180801233206-58046073cbff h1:jM4Eo4qMmm
github.com/mitchellh/go-homedir v0.0.0-20180801233206-58046073cbff/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 h1:7GoSOOW2jpsfkntVKaS2rAr1TJqfcxotyaUcuxoZSzg=
github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI=
github.com/nkovacs/streamquote v0.0.0-20170412213628-49af9bddb229 h1:E2B8qYyeSgv5MXpmzZXRNp8IAQ4vjxIjhpAf5hv/tAg=
github.com/nkovacs/streamquote v0.0.0-20170412213628-49af9bddb229/go.mod h1:0aYXnNPJ8l7uZxf45rWW1a/uME32OF0rhiYGNQ2oF2E=
github.com/oklog/run v1.0.0 h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=
github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA=
github.com/pelletier/go-buffruneio v0.2.0 h1:U4t4R6YkofJ5xHm3dJzuRpPZ0mr5MMCoAWooScCR7aA=
Expand Down
4 changes: 2 additions & 2 deletions server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"path/filepath"

"github.com/dgrijalva/jwt-go"
jwt "github.com/dgrijalva/jwt-go"
"github.com/gaia-pipeline/flag"
"github.com/gaia-pipeline/gaia"
"github.com/gaia-pipeline/gaia/handlers"
Expand All @@ -23,7 +23,7 @@ var (

const (
// Version is the current version of gaia.
Version = "0.2.2"
Version = "0.2.3"

dataFolder = "data"
pipelinesFolder = "pipelines"
Expand Down

0 comments on commit d37e5f8

Please sign in to comment.