chess_board_sim/.drone.yml

47 lines
748 B
YAML
Raw Normal View History

kind: pipeline
type: docker
name: chessboard_builder
trigger:
2024-10-05 16:17:50 -04:00
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
from_secret: docker_password
tags:
- latest
2024-10-05 16:17:50 -04:00
- ${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