mirror of
https://github.com/rancher/norman.git
synced 2025-08-03 08:38:06 +00:00
47 lines
684 B
YAML
47 lines
684 B
YAML
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: build
|
|
pull: default
|
|
image: rancher/dapper:1.11.2
|
|
commands:
|
|
- dapper ci
|
|
privileged: true
|
|
volumes:
|
|
- name: socket
|
|
path: /var/run/docker.sock
|
|
|
|
volumes:
|
|
- name: socket
|
|
host:
|
|
path: /var/run/docker.sock
|
|
---
|
|
kind: pipeline
|
|
name: fossa
|
|
|
|
steps:
|
|
- name: fossa
|
|
image: rancher/drone-fossa:latest
|
|
failure: ignore
|
|
settings:
|
|
api_key:
|
|
from_secret: FOSSA_API_KEY
|
|
when:
|
|
instance:
|
|
- drone-publish.rancher.io
|
|
ref:
|
|
include:
|
|
- "refs/heads/*"
|
|
- "refs/tags/v*"
|
|
- "refs/pull/*"
|
|
event:
|
|
- push
|
|
- tag
|
|
|