16 lines
240 B
YAML
16 lines
240 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: Fetch Submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive --depth=1 --remote
|
|
|
|
- name: Testing
|
|
image: ubuntu:bionic
|
|
commands:
|
|
- ./test.sh
|