mirror of https://github.com/go-gorm/gorm.git
67 lines
1.9 KiB
YAML
67 lines
1.9 KiB
YAML
# use the default golang container from Docker Hub
|
|
box: golang
|
|
|
|
services:
|
|
- id: mariadb:10.0
|
|
env:
|
|
MYSQL_DATABASE: gorm
|
|
MYSQL_USER: gorm
|
|
MYSQL_PASSWORD: gorm
|
|
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
|
|
- id: postgres
|
|
env:
|
|
POSTGRES_USER: gorm
|
|
POSTGRES_PASSWORD: gorm
|
|
POSTGRES_DB: gorm
|
|
- name: mssql
|
|
id: mcmoe/mssqldocker:
|
|
env:
|
|
ACCEPT_EULA: Y
|
|
SA_PASSWORD: LoremIpsum86
|
|
MSSQL_DB: gorm
|
|
MSSQL_USER: gorm
|
|
MSSQL_PASSWORD: LoremIpsum86
|
|
|
|
# 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
|
|
go get -t ./...
|
|
|
|
# Build the project
|
|
- script:
|
|
name: go build
|
|
code: |
|
|
go build ./...
|
|
|
|
# Test the project
|
|
- script:
|
|
name: test sqlite
|
|
code: |
|
|
go test ./...
|
|
|
|
- script:
|
|
name: test mysql
|
|
code: |
|
|
GORM_DIALECT=mysql GORM_DSN=gorm:gorm@tcp(mariadb:3306)/gorm?charset=utf8&parseTime=True go test ./...
|
|
|
|
- script:
|
|
name: test postgres
|
|
code: |
|
|
GORM_DIALECT=postgres GORM_DSN="host=postgres user=gorm password=gorm DB.name=gorm port=5432 sslmode=disable" go test ./...
|
|
|
|
- script:
|
|
name: test mssql
|
|
code: |
|
|
GORM_DIALECT=mssql GORM_DSN="sqlserver://gorm:LoremIpsum86@mssql:1433?database=gorm" go test ./...
|