mirror of
https://github.com/stashapp/stash.git
synced 2026-04-21 06:22:29 +02:00
* Load scene relationships on demand * Load image relationships on demand * Load gallery relationships on demand * Add dataloaden * Use dataloaders * Use where in for other find many functions
32 lines
584 B
YAML
32 lines
584 B
YAML
version: "{build}"
|
|
|
|
# Source Config
|
|
|
|
skip_branch_with_pr: true
|
|
clone_folder: c:\projects\dataloaden
|
|
|
|
# Build host
|
|
|
|
environment:
|
|
GOPATH: c:\gopath
|
|
GOVERSION: 1.11.5
|
|
PATH: '%PATH%;c:\gopath\bin'
|
|
|
|
init:
|
|
- git config --global core.autocrlf input
|
|
|
|
# Build
|
|
|
|
install:
|
|
# Install the specific Go version.
|
|
- rmdir c:\go /s /q
|
|
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.msi
|
|
- msiexec /i go%GOVERSION%.windows-amd64.msi /q
|
|
- go version
|
|
|
|
build: false
|
|
deploy: false
|
|
|
|
test_script:
|
|
- go generate ./...
|
|
- go test -parallel 8 ./...
|