summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 6e19fbc7a96d1673b5de99e77f0110b6ed0b1391 (plain) (tree)

























                            
                     
stages:
  - build

default:
  image: ubuntu:22.04

ubuntu-build:
  stage: build
  script:
    - apt update
    - apt install -y
        build-essential
        cmake
        gettext
        libcurl4-openssl-dev
        libguichan-dev
        libphysfs-dev
        libpng-dev
        libsdl2-dev
        libsdl2-gfx-dev
        libsdl2-image-dev
        libsdl2-mixer-dev
        libsdl2-net-dev
        libsdl2-ttf-dev
        libxml2-dev
    - cmake .
    - cmake --build .