gorm/.github/workflows/tests.yml

243 lines
6.6 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
permissions:
contents: read
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:
2024-06-12 12:24:34 +03:00
go: ['1.22', '1.21', '1.20']
2021-03-24 09:22:36 +03:00
platform: [ubuntu-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@v4
2020-06-22 17:51:54 +03:00
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
2020-06-22 17:51:54 +03:00
- name: go mod package cache
uses: actions/cache@v4
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
2022-01-30 17:32:34 +03:00
run: GITHUB_ACTION=true GORM_DIALECT=sqlite ./tests/tests_all.sh
2020-06-22 17:51:54 +03:00
mysql:
strategy:
matrix:
2024-06-12 12:24:34 +03:00
dbversion: ['mysql/mysql-server:latest', 'mysql:5.7']
go: ['1.22', '1.21', '1.20']
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@v4
2020-06-22 17:51:54 +03:00
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@v4
2020-06-22 17:51:54 +03:00
- name: go mod package cache
uses: actions/cache@v4
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
2022-01-30 17:32:34 +03:00
run: GITHUB_ACTION=true 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
mariadb:
strategy:
matrix:
dbversion: [ 'mariadb:latest' ]
2024-06-12 12:24:34 +03:00
go: ['1.22', '1.21', '1.20']
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
services:
mysql:
image: ${{ matrix.dbversion }}
env:
MYSQL_DATABASE: gorm
MYSQL_USER: gorm
MYSQL_PASSWORD: gorm
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
ports:
- 9910:3306
options: >-
--health-cmd "mariadb-admin ping -ugorm -pgorm"
--health-interval 10s
--health-start-period 10s
--health-timeout 5s
--health-retries 10
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: go mod package cache
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
- name: Tests
run: GITHUB_ACTION=true 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:15', 'postgres:14', 'postgres:13']
2024-06-12 12:24:34 +03:00
go: ['1.22', '1.21', '1.20']
2021-04-19 16:03:39 +03:00
platform: [ubuntu-latest] # can not run in macOS and Windows
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@v4
2020-06-22 17:51:54 +03:00
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@v4
2020-06-22 17:32:12 +03:00
- name: go mod package cache
uses: actions/cache@v4
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
2022-01-30 17:32:34 +03:00
run: GITHUB_ACTION=true 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:
2024-06-12 12:24:34 +03:00
go: ['1.22', '1.21', '1.20']
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: mcr.microsoft.com/mssql/server:2022-latest
2020-06-22 17:32:12 +03:00
env:
TZ: Asia/Shanghai
2020-06-22 17:32:12 +03:00
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: LoremIpsum86
2020-06-22 17:32:12 +03:00
ports:
- 9930:1433
options: >-
--health-cmd="/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P ${MSSQL_SA_PASSWORD} -N -C -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@v4
2020-06-22 17:32:12 +03:00
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
2020-06-22 17:32:12 +03:00
- name: go mod package cache
uses: actions/cache@v4
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
run: GITHUB_ACTION=true GORM_DIALECT=sqlserver GORM_DSN="sqlserver://sa:LoremIpsum86@localhost:9930?database=master" ./tests/tests_all.sh
tidb:
strategy:
matrix:
dbversion: [ 'v6.5.0' ]
2024-06-12 12:24:34 +03:00
go: ['1.22', '1.21', '1.20']
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Setup TiDB
uses: Icemap/tidb-action@main
with:
port: 9940
version: ${{matrix.dbversion}}
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: go mod package cache
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
- name: Tests
run: GITHUB_ACTION=true GORM_DIALECT=tidb GORM_DSN="root:@tcp(localhost:9940)/test?charset=utf8&parseTime=True&loc=Local" ./tests/tests_all.sh