Sainnhe Park
b39d62e895
All checks were successful
continuous-integration/drone/push Build is passing
38 lines
686 B
YAML
38 lines
686 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: test
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
trigger:
|
|
branch:
|
|
- master
|
|
steps:
|
|
- name: test
|
|
image: docker.io/sainnhe/cmake:latest
|
|
commands:
|
|
- cmake .
|
|
- cmake --build . --parallel $(nproc) --target all
|
|
- ctest
|
|
- name: notify
|
|
image: drillster/drone-email
|
|
when:
|
|
status:
|
|
- failure
|
|
settings:
|
|
from.address:
|
|
from_secret: EMAIL_ADDRESS
|
|
from.name:
|
|
from_secret: EMAIL_SENDER
|
|
host:
|
|
from_secret: EMAIL_HOST
|
|
port:
|
|
from_secret: EMAIL_PORT
|
|
username:
|
|
from_secret: EMAIL_USERNAME
|
|
password:
|
|
from_secret: EMAIL_PASSWORD
|
|
no_starttls: true
|
|
recipients:
|
|
- i@sainnhe.dev
|