Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
Former-commit-id: e6edeef
  • Loading branch information
ppwfx committed Mar 9, 2020
1 parent dcf6fcc commit 25d4250
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .make/make.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -eo pipefail
set -eox pipefail

function build {
(cd metactl && make build)
Expand All @@ -23,5 +23,4 @@ function release {
function generate {
./metactl/dist/metactl gen
(cd gen && go mod init github.com/metamatemono/gen)

}
2 changes: 1 addition & 1 deletion auth-svc/.make/make.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -eo pipefail
set -eox pipefail

function build {
time GO111MODULE=on GOARCH=amd64 GOOS=linux go build -o main
Expand Down
2 changes: 1 addition & 1 deletion metactl/.make/make.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -eo pipefail
set -eox pipefail

function build {
export GO111MODULE=on
Expand Down
4 changes: 2 additions & 2 deletions metamate/.make/make.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -eo pipefail
set -eox pipefail

function build {
time go build -i -o dist/metamate cmd/metamate/main.go
Expand Down Expand Up @@ -41,5 +41,5 @@ function release {
--tag metamatex/metamate:$TAG \
.

# docker push metamatex/metamate:latest
docker push metamatex/metamate:latest
}
2 changes: 1 addition & 1 deletion sqlx-svc/.make/make.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -eo pipefail
set -eox pipefail

function build {
export GO111MODULE=on
Expand Down

0 comments on commit 25d4250

Please sign in to comment.