chess_board_sim/.drone.yml
Daniel Weber f2cac2ce4e
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
updating DRONE_TAG substring stripping
2024-10-05 17:44:56 -04:00

52 lines
887 B
YAML

kind: pipeline
type: docker
name: chessboard_builder
trigger:
event:
- tag
- custom
steps:
- name: docker
image: plugins/docker
settings:
repo: git.pipsquire.com/djweber12/chess_board_sim
registry: git.pipsquire.com
username:
from_secret: docker_username
password:
from_secret: docker_password
tags:
- latest
- "${DRONE_TAG##builder-v}"
when:
ref:
include:
- refs/tags/builder-v*
---
kind: pipeline
type: docker
name: chessboard
trigger:
branch:
- main
event:
- push
- custom
steps:
- name: build
image: git.pipsquire.com/djweber12/chess_board_sim:latest
commands:
- cmake -S . -B build
- cmake --build build
- name: test
image: git.pipsquire.com/djweber12/chess_board_sim:latest
commands:
- ./build/test/chess_test