mirror of
https://github.com/HappyTanuki/BumbleCee.git
synced 2025-12-17 21:03:27 +00:00
스킵 구현
This commit is contained in:
20
DPP-master/.circleci/config.yml
Normal file
20
DPP-master/.circleci/config.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
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'
|
||||
Reference in New Issue
Block a user