Add .circleci/config.yml

This commit is contained in:
Rebekah 2022-04-04 23:16:56 +00:00
parent ca5364fdfd
commit a271f131a4

27
.circleci/config.yml Normal file
View File

@ -0,0 +1,27 @@
version: 2.1
jobs:
build-libxoverlay:
docker:
- image: ubuntu:22.04 # LTS only
environment:
DEBIAN_FRONTEND: noninteractive
steps:
- checkout
- run:
name: "Install development packages"
command: "apt update && apt install -y build-essential cmake libglew-dev libx11-dev libxext-dev libxfixes-dev"
- run:
name: "Make build directory"
command: "mkdir build"
- run:
name: "CMake build files"
command: "cd build && cmake -DCMAKE_BUILD_TYPE=Release ../"
- run:
name: "Build Project"
command: "cd build && make"
workflows:
build-libpdraw-workflow:
jobs:
- build-libxoverlay