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
492 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 g++-multilib libsdl2-dev:i386 libsdl2-mixer-dev:i386 libsdl2-ttf-dev:i386 libsodium-dev libsodium-dev:i386
- run: mkdir build32
- run: cd build32 && linux32 cmake -DCMAKE_TOOLCHAIN_FILE=../CMake/32bit.cmake ..
- run: cd build32 && linux32 make -j$(nproc)