2016-05-21 21:05:31 +03:00
|
|
|
# use the default golang container from Docker Hub
|
|
|
|
box: golang
|
|
|
|
|
|
|
|
services:
|
2018-02-10 06:45:38 +03:00
|
|
|
- name: mariadb
|
|
|
|
id: mariadb:latest
|
2016-05-21 21:05:31 +03:00
|
|
|
env:
|
|
|
|
MYSQL_DATABASE: gorm
|
|
|
|
MYSQL_USER: gorm
|
|
|
|
MYSQL_PASSWORD: gorm
|
|
|
|
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
|
2019-06-13 06:48:19 +03:00
|
|
|
- name: mysql
|
|
|
|
id: mysql:latest
|
2018-02-10 06:45:38 +03:00
|
|
|
env:
|
|
|
|
MYSQL_DATABASE: gorm
|
|
|
|
MYSQL_USER: gorm
|
|
|
|
MYSQL_PASSWORD: gorm
|
|
|
|
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
|
2019-06-13 06:48:19 +03:00
|
|
|
- name: mysql57
|
|
|
|
id: mysql:5.7
|
2018-02-10 06:45:38 +03:00
|
|
|
env:
|
|
|
|
MYSQL_DATABASE: gorm
|
|
|
|
MYSQL_USER: gorm
|
|
|
|
MYSQL_PASSWORD: gorm
|
|
|
|
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
|
2019-06-13 06:48:19 +03:00
|
|
|
- name: mysql56
|
|
|
|
id: mysql:5.6
|
2018-02-10 06:45:38 +03:00
|
|
|
env:
|
|
|
|
MYSQL_DATABASE: gorm
|
|
|
|
MYSQL_USER: gorm
|
|
|
|
MYSQL_PASSWORD: gorm
|
|
|
|
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
|
|
|
|
- name: postgres
|
|
|
|
id: postgres:latest
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: gorm
|
|
|
|
POSTGRES_PASSWORD: gorm
|
|
|
|
POSTGRES_DB: gorm
|
|
|
|
- name: postgres96
|
|
|
|
id: postgres:9.6
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: gorm
|
|
|
|
POSTGRES_PASSWORD: gorm
|
|
|
|
POSTGRES_DB: gorm
|
|
|
|
- name: postgres95
|
|
|
|
id: postgres:9.5
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: gorm
|
|
|
|
POSTGRES_PASSWORD: gorm
|
|
|
|
POSTGRES_DB: gorm
|
|
|
|
- name: postgres94
|
|
|
|
id: postgres:9.4
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: gorm
|
|
|
|
POSTGRES_PASSWORD: gorm
|
|
|
|
POSTGRES_DB: gorm
|
|
|
|
- name: postgres93
|
|
|
|
id: postgres:9.3
|
2016-05-21 21:05:31 +03:00
|
|
|
env:
|
|
|
|
POSTGRES_USER: gorm
|
|
|
|
POSTGRES_PASSWORD: gorm
|
|
|
|
POSTGRES_DB: gorm
|
2018-02-10 06:06:43 +03:00
|
|
|
- name: mssql
|
2018-02-10 06:45:38 +03:00
|
|
|
id: mcmoe/mssqldocker:latest
|
2018-02-10 06:06:43 +03:00
|
|
|
env:
|
|
|
|
ACCEPT_EULA: Y
|
|
|
|
SA_PASSWORD: LoremIpsum86
|
|
|
|
MSSQL_DB: gorm
|
|
|
|
MSSQL_USER: gorm
|
|
|
|
MSSQL_PASSWORD: LoremIpsum86
|
2016-05-21 21:05:31 +03:00
|
|
|
|
|
|
|
# The steps that will be executed in the build pipeline
|
|
|
|
build:
|
|
|
|
# The steps that will be executed on build
|
|
|
|
steps:
|
|
|
|
# Sets the go workspace and places you package
|
|
|
|
# at the right place in the workspace tree
|
|
|
|
- setup-go-workspace
|
|
|
|
|
|
|
|
# Gets the dependencies
|
|
|
|
- script:
|
|
|
|
name: go get
|
|
|
|
code: |
|
|
|
|
cd $WERCKER_SOURCE_DIR
|
|
|
|
go version
|
2019-04-14 11:23:26 +03:00
|
|
|
go get -t -v ./...
|
2016-05-21 21:05:31 +03:00
|
|
|
|
|
|
|
# Build the project
|
|
|
|
- script:
|
|
|
|
name: go build
|
|
|
|
code: |
|
|
|
|
go build ./...
|
|
|
|
|
|
|
|
# Test the project
|
|
|
|
- script:
|
|
|
|
name: test sqlite
|
|
|
|
code: |
|
2019-04-14 11:41:23 +03:00
|
|
|
go test -race -v ./...
|
2016-05-21 21:05:31 +03:00
|
|
|
|
2018-02-10 06:45:38 +03:00
|
|
|
- script:
|
|
|
|
name: test mariadb
|
|
|
|
code: |
|
2019-04-14 11:46:05 +03:00
|
|
|
GORM_DIALECT=mysql GORM_DSN="gorm:gorm@tcp(mariadb:3306)/gorm?charset=utf8&parseTime=True" go test -race ./...
|
2018-02-10 06:45:38 +03:00
|
|
|
|
2019-06-13 06:48:19 +03:00
|
|
|
- script:
|
|
|
|
name: test mysql
|
|
|
|
code: |
|
|
|
|
GORM_DIALECT=mysql GORM_DSN="gorm:gorm@tcp(mysql:3306)/gorm?charset=utf8&parseTime=True" go test -race ./...
|
|
|
|
|
2018-02-10 06:45:38 +03:00
|
|
|
- script:
|
|
|
|
name: test mysql5.7
|
|
|
|
code: |
|
2019-04-14 11:46:05 +03:00
|
|
|
GORM_DIALECT=mysql GORM_DSN="gorm:gorm@tcp(mysql57:3306)/gorm?charset=utf8&parseTime=True" go test -race ./...
|
2018-02-10 06:45:38 +03:00
|
|
|
|
|
|
|
- script:
|
|
|
|
name: test mysql5.6
|
|
|
|
code: |
|
2019-04-14 11:46:05 +03:00
|
|
|
GORM_DIALECT=mysql GORM_DSN="gorm:gorm@tcp(mysql56:3306)/gorm?charset=utf8&parseTime=True" go test -race ./...
|
2018-02-10 06:45:38 +03:00
|
|
|
|
2016-05-21 21:05:31 +03:00
|
|
|
- script:
|
|
|
|
name: test postgres
|
|
|
|
code: |
|
2019-04-14 11:46:05 +03:00
|
|
|
GORM_DIALECT=postgres GORM_DSN="host=postgres user=gorm password=gorm DB.name=gorm port=5432 sslmode=disable" go test -race ./...
|
2018-02-10 06:06:43 +03:00
|
|
|
|
2018-02-10 06:45:38 +03:00
|
|
|
- script:
|
|
|
|
name: test postgres96
|
|
|
|
code: |
|
2019-04-14 11:46:05 +03:00
|
|
|
GORM_DIALECT=postgres GORM_DSN="host=postgres96 user=gorm password=gorm DB.name=gorm port=5432 sslmode=disable" go test -race ./...
|
2018-02-10 06:45:38 +03:00
|
|
|
|
|
|
|
- script:
|
|
|
|
name: test postgres95
|
|
|
|
code: |
|
2019-04-14 11:46:05 +03:00
|
|
|
GORM_DIALECT=postgres GORM_DSN="host=postgres95 user=gorm password=gorm DB.name=gorm port=5432 sslmode=disable" go test -race ./...
|
2018-02-10 06:45:38 +03:00
|
|
|
|
|
|
|
- script:
|
|
|
|
name: test postgres94
|
|
|
|
code: |
|
2019-04-14 11:46:05 +03:00
|
|
|
GORM_DIALECT=postgres GORM_DSN="host=postgres94 user=gorm password=gorm DB.name=gorm port=5432 sslmode=disable" go test -race ./...
|
2018-02-10 06:45:38 +03:00
|
|
|
|
|
|
|
- script:
|
|
|
|
name: test postgres93
|
|
|
|
code: |
|
2019-04-14 11:46:05 +03:00
|
|
|
GORM_DIALECT=postgres GORM_DSN="host=postgres93 user=gorm password=gorm DB.name=gorm port=5432 sslmode=disable" go test -race ./...
|
2018-02-10 06:45:38 +03:00
|
|
|
|
2018-02-10 06:06:43 +03:00
|
|
|
- script:
|
|
|
|
name: test mssql
|
|
|
|
code: |
|
2019-04-14 11:46:05 +03:00
|
|
|
GORM_DIALECT=mssql GORM_DSN="sqlserver://gorm:LoremIpsum86@mssql:1433?database=gorm" go test -race ./...
|
2019-05-05 09:20:51 +03:00
|
|
|
|
|
|
|
- script:
|
2019-05-05 09:47:14 +03:00
|
|
|
name: codecov
|
2019-05-05 09:20:51 +03:00
|
|
|
code: |
|
|
|
|
go test -race -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
bash <(curl -s https://codecov.io/bash)
|