chess_board_sim/.drone.yml
Daniel Weber 86ab0fba86
Some checks failed
continuous-integration/drone Build is failing
Braking pipelines out into main and build_tools pipelines
2024-10-05 14:49:25 -04:00

43 lines
647 B
YAML

kind: pipeline
type: docker
name: chessboard_builder
trigger:
branch:
- build_tools
event:
- push
- 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
---
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