gorm/.github/workflows/tests.yml

192 lines
5.2 KiB
YAML
Raw Normal View History

2020-06-22 18:14:17 +03:00
name: tests
2020-06-22 17:32:12 +03:00
on:
push:
2020-06-22 18:14:17 +03:00
branches-ignore:
- 'gh-pages'
2020-06-22 17:32:12 +03:00
pull_request:
2020-06-22 18:14:17 +03:00
branches-ignore:
- 'gh-pages'
2020-06-22 17:32:12 +03:00
jobs:
# Label of the container job
2020-06-22 17:51:54 +03:00
sqlite:
2020-06-22 17:32:12 +03:00
strategy:
matrix:
2020-08-24 15:24:25 +03:00
go: ['1.15', '1.14', '1.13']
platform: [ubuntu-latest, macos-latest] # can not run in windows OS
runs-on: ${{ matrix.platform }}
2020-06-22 17:51:54 +03:00
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: go mod package cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
2020-06-24 09:48:44 +03:00
- name: Tests
2020-06-24 10:04:46 +03:00
run: GORM_DIALECT=sqlite ./tests/tests_all.sh
2020-06-22 17:51:54 +03:00
sqlite_windows:
strategy:
matrix:
2020-08-24 15:24:25 +03:00
go: ['1.15', '1.14', '1.13']
platform: [windows-latest]
runs-on: ${{ matrix.platform }}
steps:
2020-06-24 09:48:44 +03:00
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
2020-06-24 09:48:44 +03:00
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: go mod package cache
2020-06-24 09:48:44 +03:00
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
2020-06-24 09:48:44 +03:00
- name: Tests
run: cd tests && set GORM_DIALECT=sqlite && go test $race -count=1 -v ./... #run the line in widnows's CMD, default GORM_DIALECT is sqlite
2020-06-22 17:51:54 +03:00
mysql:
strategy:
matrix:
dbversion: ['mysql:latest', 'mysql:5.7', 'mysql:5.6', 'mariadb:latest']
2020-08-24 15:24:25 +03:00
go: ['1.15', '1.14', '1.13']
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
2020-06-22 17:32:12 +03:00
services:
2020-06-22 17:51:54 +03:00
mysql:
image: ${{ matrix.dbversion }}
2020-06-22 17:32:12 +03:00
env:
2020-06-22 17:51:54 +03:00
MYSQL_DATABASE: gorm
MYSQL_USER: gorm
MYSQL_PASSWORD: gorm
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
2020-06-22 17:32:12 +03:00
ports:
2020-06-22 17:51:54 +03:00
- 9910:3306
options: >-
--health-cmd "mysqladmin ping -ugorm -pgorm"
--health-interval 10s
--health-start-period 10s
--health-timeout 5s
--health-retries 10
2020-06-22 17:32:12 +03:00
2020-06-22 17:51:54 +03:00
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
2020-06-22 17:32:12 +03:00
2020-06-22 17:51:54 +03:00
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: go mod package cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
2020-06-22 17:51:54 +03:00
2020-06-24 09:48:44 +03:00
- name: Tests
2020-06-24 10:04:46 +03:00
run: GORM_DIALECT=mysql GORM_DSN="gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True" ./tests/tests_all.sh
2020-06-22 17:51:54 +03:00
postgres:
strategy:
matrix:
dbversion: ['postgres:latest', 'postgres:11', 'postgres:10']
2020-08-24 15:24:25 +03:00
go: ['1.15', '1.14', '1.13']
platform: [ubuntu-latest] # can not run in macOS and widnowsOS
runs-on: ${{ matrix.platform }}
2020-06-22 17:51:54 +03:00
services:
postgres:
image: ${{ matrix.dbversion }}
2020-06-22 17:32:12 +03:00
env:
POSTGRES_PASSWORD: gorm
POSTGRES_USER: gorm
POSTGRES_DB: gorm
TZ: Asia/Shanghai
ports:
2020-06-22 17:51:54 +03:00
- 9920:5432
2020-06-22 17:32:12 +03:00
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
2020-06-22 17:51:54 +03:00
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
2020-06-22 17:32:12 +03:00
2020-06-22 17:51:54 +03:00
- name: Check out code into the Go module directory
uses: actions/checkout@v2
2020-06-22 17:32:12 +03:00
- name: go mod package cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
2020-06-22 17:32:12 +03:00
2020-06-24 09:48:44 +03:00
- name: Tests
2020-07-16 12:15:57 +03:00
run: GORM_DIALECT=postgres GORM_DSN="user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai" ./tests/tests_all.sh
2020-06-22 17:51:54 +03:00
sqlserver:
strategy:
matrix:
2020-08-24 15:24:25 +03:00
go: ['1.15', '1.14', '1.13']
platform: [ubuntu-latest] # can not run test in macOS and windows
runs-on: ${{ matrix.platform }}
2020-06-22 17:32:12 +03:00
2020-06-22 17:51:54 +03:00
services:
2020-06-22 17:32:12 +03:00
mssql:
image: mcmoe/mssqldocker:latest
env:
ACCEPT_EULA: Y
SA_PASSWORD: LoremIpsum86
MSSQL_DB: gorm
MSSQL_USER: gorm
MSSQL_PASSWORD: LoremIpsum86
ports:
- 9930:1433
options: >-
--health-cmd="/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P LoremIpsum86 -l 30 -Q \"SELECT 1\" || exit 1"
--health-start-period 10s
--health-interval 10s
--health-timeout 5s
--health-retries 10
2020-06-22 17:32:12 +03:00
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: go mod package cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
2020-06-22 17:32:12 +03:00
2020-06-24 09:48:44 +03:00
- name: Tests
2020-06-24 10:04:46 +03:00
run: GORM_DIALECT=sqlserver GORM_DSN="sqlserver://gorm:LoremIpsum86@localhost:9930?database=gorm" ./tests/tests_all.sh