gapr/.concourse/tasks/test.yml

29 lines
465 B
YAML
Raw Normal View History

2023-01-30 21:06:18 +00:00
---
platform: linux
image_resource:
type: registry-image
source:
repository: docker.io/golang
tag: 1.19-buster
inputs:
- name: repo
path: .
params:
GO111MODULE: "on"
CGO_ENABLED: "1"
GOMEMLIMIT: "1150MiB"
2023-01-30 21:06:18 +00:00
GITEA_TOKEN: ((gitea-credentials.token))
container_limits:
memory: 1258291200 # 1200MB
2023-01-30 21:06:18 +00:00
run:
path: bash
args:
- -ce
- |
2023-01-31 20:14:34 +00:00
go run gotest.tools/gotestsum@latest -f pkgname-and-test-fails -- -race -shuffle=on ./...