Skip to content

Commit ecbbf73

Browse files
author
Jayesh
committed
added travis continuous deployment
1 parent d4200eb commit ecbbf73

File tree

8 files changed

+69
-51
lines changed

8 files changed

+69
-51
lines changed

.travis.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
services:
2+
- docker
3+
4+
language: go
5+
6+
go:
7+
- "1.12"
8+
9+
env:
10+
- GO111MODULE=on
11+
12+
branches:
13+
only:
14+
- master
15+
16+
notifications:
17+
email:
18+
19+
20+
install:
21+
- go build
22+
# - docker build --tag=spaceuptech/space-cloud:latest .
23+
24+
script:
25+
- go test ./...
26+
27+
deploy:
28+
provider: script
29+
script: bash deploy.sh
30+
on:
31+
branch: master
32+
33+
34+
after_script:
35+
- cat /tmp/results.xml

Dockerfile

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
FROM alpine:3.9
22
WORKDIR /space-cloud
3-
RUN set -ex \
3+
# Copy the space-cloud binary from the build context to the container's working directory
4+
COPY space-cloud .
5+
RUN set -ex \
46
&& apk add --no-cache ca-certificates \
5-
&& apk add --no-cache unzip \
6-
&& wget https://spaceuptech.com/downloads/linux/space-cloud.zip \
7-
&& unzip space-cloud.zip \
8-
&& rm space-cloud.zip \
97
&& chmod +x space-cloud
108
ENV PROD=false
119
ENV PATH="/space-cloud:${PATH}"
1210
EXPOSE 8080
13-
CMD space-cloud run
11+
CMD ./space-cloud run

deploy.sh

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
3+
mkdir linux && mkdir windows && mkdir darwin
4+
GOOS=darwin GOARCH=amd64 go build -ldflags '-s -w -extldflags "-static"' .
5+
zip space-cloud.zip space-cloud
6+
mv ./space-cloud.zip ./darwin/
7+
rm space-cloud
8+
GOOS=windows GOARCH=amd64 go build -ldflags '-s -w -extldflags "-static"' .
9+
zip space-cloud.zip space-cloud.exe
10+
mv ./space-cloud.zip ./windows/
11+
rm space-cloud.exe
12+
GOOS=linux GOARCH=amd64 go build -ldflags '-s -w -extldflags "-static"' .
13+
zip space-cloud.zip space-cloud
14+
mv ./space-cloud.zip ./linux/
15+
rm space-cloud
16+
17+
# echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
18+
# docker push spaceuptech/space-cloud:latest
19+
20+
curl -H "Authorization: Bearer $JWT_TOKEN" -F 'file=@./darwin/space-cloud.zip' -F 'fileType=file' -F 'makeAll=false' -F 'path=/darwin' https://spaceuptech.com/v1/api/downloads/files
21+
curl -H "Authorization: Bearer $JWT_TOKEN" -F 'file=@./windows/space-cloud.zip' -F 'fileType=file' -F 'makeAll=false' -F 'path=/windows' https://spaceuptech.com/v1/api/downloads/files
22+
curl -H "Authorization: Bearer $JWT_TOKEN" -F 'file=@./linux/space-cloud.zip' -F 'fileType=file' -F 'makeAll=false' -F 'path=/linux' https://spaceuptech.com/v1/api/downloads/files

modules/auth/file_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func TestGetFileRule(t *testing.T) {
4242
t.Error(data, rules, err1)
4343
}
4444
} else {
45-
if err1 != nil {
45+
if err1 == nil {
4646
t.Error(data, rules, err1)
4747
}
4848
}

modules/crud/sql/create_test.go

+1-38
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@ package sql
22

33
import (
44
"context"
5-
"errors"
6-
"fmt"
75
"testing"
86

97
"github.com/spaceuptech/space-cloud/model"
108

11-
"github.com/jmoiron/sqlx"
129
"github.com/spaceuptech/space-cloud/utils"
1310
)
1411

@@ -32,11 +29,7 @@ func TestGenerateCreateQuery(t *testing.T) {
3229
var ctx context.Context
3330

3431
for _, dbTypeValue := range dbTypes {
35-
s, err := InitializeDatabase(dbTypeValue)
36-
if err != nil {
37-
fmt.Println("initialization ", err)
38-
return
39-
}
32+
s := SQL{dbType: string(dbTypeValue)}
4033
for i, structValue := range tddStruct {
4134
sqlQuery, _, err := s.generateCreateQuery(ctx, structValue.project, structValue.col, &structValue.req)
4235

@@ -52,33 +45,3 @@ func TestGenerateCreateQuery(t *testing.T) {
5245
}
5346

5447
}
55-
56-
func InitializeDatabase(dbType utils.DBType) (*SQL, error) {
57-
var sql *sqlx.DB
58-
var err error
59-
s := &SQL{}
60-
switch dbType {
61-
case utils.Postgres:
62-
sql, err = sqlx.Open("postgres", "postgres://myuser:password@localhost/testdb?sslmode=disable")
63-
s.dbType = "postgres"
64-
65-
case utils.MySQL:
66-
sql, err = sqlx.Open("mysql", "testuser:password@(localhost:3306)/testdb")
67-
s.dbType = "mysql"
68-
69-
default:
70-
return nil, errors.New("SQL: Invalid driver provided")
71-
}
72-
73-
if err != nil {
74-
return nil, err
75-
}
76-
77-
err = sql.Ping()
78-
if err != nil {
79-
return nil, err
80-
}
81-
82-
s.client = sql
83-
return s, nil
84-
}

modules/crud/sql/delete_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func TestGenerateDeleteQuery(t *testing.T) {
2626
}
2727
var ctx context.Context
2828
project := "projectName"
29-
s, _ := InitializeDatabase("sql-mysql")
29+
s := SQL{dbType: string("sql-mysql")}
3030
for i, test := range tests {
3131
t.Run(test.name, func(t *testing.T) {
3232
sqlString, _, err := s.generateDeleteQuery(ctx, project, test.tableName, &test.req)

modules/crud/sql/update_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55
"testing"
66

77
"github.com/spaceuptech/space-cloud/model"
8+
"github.com/spaceuptech/space-cloud/utils"
89
)
910

1011
func TestGenerateUpdateQuery(t *testing.T) {
1112
truecases := 10
12-
var ctx context.Context
1313
project := "projectName"
1414
tests := []struct {
1515
name, tableName, wantThis, orThis string
@@ -30,10 +30,10 @@ func TestGenerateUpdateQuery(t *testing.T) {
3030
{name: "Error No $set", tableName: "fooTable", wantThis: "UPDATE fooTable SET String1=? WHERE ((FindString1 = ?) AND (FindString2 = ?))", req: model.UpdateRequest{Update: map[string]interface{}{}, Find: map[string]interface{}{"FindString1": "1", "FindString2": "2"}}},
3131
{name: "Query Update sql", tableName: "fooTable", wantThis: "UPDATE fooTable SET String1=? WHERE ((FindString1 = ?) AND (FindString2 = ?))", req: model.UpdateRequest{Update: map[string]interface{}{"$set": map[string]interface{}{}}, Find: map[string]interface{}{"FindString1": "1", "FindString2": "2"}}},
3232
}
33-
s, _ := InitializeDatabase("sql-mysql")
33+
s := SQL{dbType: string(utils.MySQL)}
3434
for i, test := range tests {
3535
t.Run(test.name, func(t *testing.T) {
36-
sqlString, _, err := s.generateUpdateQuery(ctx, project, test.tableName, &test.req)
36+
sqlString, _, err := s.generateUpdateQuery(context.TODO(), project, test.tableName, &test.req)
3737
if i < truecases {
3838
if i == 0 {
3939
if ((sqlString != test.wantThis) && (sqlString != test.orThis)) || err != nil {

server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ func (s *server) loadConfig(config *config.Project) error {
8888
func (s *server) initGRPCServer(port string) {
8989
lis, err := net.Listen("tcp", ":"+port)
9090
if err != nil {
91-
log.Fatal("Failed to listen: %v", err)
91+
log.Fatal("Failed to listen:", err)
9292
}
9393
grpcServer := grpc.NewServer()
9494
pb.RegisterSpaceCloudServer(grpcServer, s)
9595
if err := grpcServer.Serve(lis); err != nil {
96-
log.Fatalf("failed to serve: %v", err)
96+
log.Fatal("failed to serve:", err)
9797
}
9898
}

0 commit comments

Comments
 (0)