mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 19:48:04 +00:00
26 lines
411 B
YAML
26 lines
411 B
YAML
|
version: 1
|
||
|
|
||
|
clone:
|
||
|
- name: git
|
||
|
image: woodpeckerci/plugin-git
|
||
|
settings:
|
||
|
partial: true
|
||
|
- name: testdata
|
||
|
image: woodpeckerci/plugin-git
|
||
|
settings:
|
||
|
remote: https://gitserver/owner/testdata.git
|
||
|
path: testdata
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: golang
|
||
|
commands:
|
||
|
- go build
|
||
|
- go test
|
||
|
|
||
|
services:
|
||
|
- name: database
|
||
|
image: mysql
|
||
|
- name: cache
|
||
|
image: redis
|