GLdc/.gitlab-ci.yml
Luke Benstead fe616028bb X86
2021-04-09 15:24:47 +00:00

24 lines
460 B
YAML

stages:
- build
build:sh4-gcc:
stage: build
image: kazade/dreamcast-sdk
script:
- source /etc/bash.bashrc
- mkdir builddir
- cd builddir
- cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/Dreamcast.cmake ..
- make
build:x86-gcc:
stage: build
image: fedora:33
before_script:
- sudo dnf install -y cmake gcc gcc-c++ SDL2-devel.i686 glibc-devel.i686
script:
- mkdir builddir
- cd builddir
- cmake ..
- make