Adam Štrauch
bc50cb1105
* full implementation of snapshots * tests of the snapshot backend * Drone CI pipeline * New snapshots handlers * Filesystem driver * S3 driver
26 lines
403 B
YAML
26 lines
403 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: testing
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang
|
|
environment:
|
|
SNAPSHOTS_S3_ENDPOINT: minio:9000
|
|
TEST_S3_ENDPOINT: minio:9000
|
|
commands:
|
|
- go mod tidy
|
|
- make test
|
|
|
|
services:
|
|
- name: minio
|
|
image: minio/minio:latest
|
|
environment:
|
|
MINIO_ROOT_USER: test
|
|
MINIO_ROOT_PASSWORD: testtest
|
|
command:
|
|
- server
|
|
- /data
|
|
- --console-address
|
|
- :9001
|