2020-01-06 06:48:33 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2020-01-06 08:28:22 +00:00
|
|
|
- name: Fetch Submodules
|
|
|
|
image: alpine/git
|
|
|
|
commands:
|
2020-01-06 08:31:35 +00:00
|
|
|
- git submodule update --recursive --depth=1 --remote
|
2020-01-06 08:28:22 +00:00
|
|
|
|
2020-01-06 06:48:33 +00:00
|
|
|
- name: Testing
|
|
|
|
image: ubuntu:bionic
|
|
|
|
commands:
|
|
|
|
- ./test.sh
|