mirror of
https://github.com/OpenCoin/oc-mint-cpp.git
synced 2024-11-14 04:59:41 +01:00
30 lines
483 B
YAML
30 lines
483 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: amd64-main
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|
|
- pull_request
|
|
|
|
steps:
|
|
- name: build
|
|
image: debian
|
|
commands:
|
|
- apt-get update
|
|
- apt-get -y install build-essential libboost-system-dev libboost-date-time-dev git cmake graphviz doxygen
|
|
- cmake -B build -S .
|
|
- cmake --build build -t all test
|
|
when:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|