You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
385 B

version: 2
jobs:
build:
docker:
- image: debian:stretch
working_directory: ~/repo
steps:
- checkout
- run: apt-get update -y
- run: apt-get install -y --no-install-recommends cmake libsdl2-dev libsdl2-mixer-dev libsdl2-ttf-dev libsodium-dev
- run: mkdir build32
- run: cd build32 && cmake ..
- run: cd build32 && make -j$(nproc)