1
0
Fork 0
mirror of https://gitlab.com/niansa/discord_llama.git synced 2025-03-06 20:48:25 +01:00
discord_llama/DPP/.circleci/config.yml
2023-04-29 10:49:24 +02:00

20 lines
567 B
YAML

version: 2
jobs:
build:
docker:
- image: "debian:bullseye"
steps:
- checkout
- run:
name: Installing build dependencies
command: 'apt-get update && apt-get install -y sudo gcc g++ build-essential git cmake libssl-dev zlib1g-dev'
- run:
name: Creating Build Files
command: 'cmake -H. -Bbuild'
- run:
name: Creating Binary Files
command: 'cmake --build build'
- run:
name: Testing installation
command: 'cmake --build build --target install'