Use OpenLoco's docker images

This commit is contained in:
Michał Janiszewski 2020-03-18 21:58:04 +01:00 committed by Aaron van Geffen
parent 6834719e71
commit 96e5c94588
2 changed files with 4 additions and 4 deletions

View File

@ -78,7 +78,7 @@ matrix:
script: script:
- mkdir build - mkdir build
- docker run -v $(pwd):/openloco -w /openloco/build -i -t openrct2/openloco:$DOCKERIMG bash -c "cmake ../ ${OPENLOCO_CMAKE_OPTS} && ninja -k0" - docker run -v $(pwd):/openloco -w /openloco/build -i -t openloco/openloco:$DOCKERIMG bash -c "cmake ../ ${OPENLOCO_CMAKE_OPTS} && ninja -k0"
deploy: deploy:
provider: releases provider: releases

View File

@ -1,21 +1,21 @@
version: '2' version: '2'
services: services:
openloco-gcc32: openloco-gcc32:
image: openrct2/openloco:ubuntu-i686 image: openloco/openloco:ubuntu-i686
working_dir: /openloco/bin.gcc working_dir: /openloco/bin.gcc
volumes: volumes:
- .:/openloco - .:/openloco
entrypoint: bash entrypoint: bash
command: -c "cmake ../ -G Ninja -DCMAKE_BUILD_TYPE=release && ninja -k0" command: -c "cmake ../ -G Ninja -DCMAKE_BUILD_TYPE=release && ninja -k0"
openloco-clang32: openloco-clang32:
image: openrct2/openloco:ubuntu-i686 image: openloco/openloco:ubuntu-i686
working_dir: /openloco/bin.clang working_dir: /openloco/bin.clang
volumes: volumes:
- .:/openloco - .:/openloco
entrypoint: bash entrypoint: bash
command: -c "cmake ../ -G Ninja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=release && ninja -k0" command: -c "cmake ../ -G Ninja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=release && ninja -k0"
openloco-mingw32: openloco-mingw32:
image: openrct2/openloco:fedora-mingw32 image: openloco/openloco:fedora-mingw32
working_dir: /openloco/bin.mingw32 working_dir: /openloco/bin.mingw32
volumes: volumes:
- .:/openloco - .:/openloco