summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 6a9ed7a604f5719619fab38d27b7fe46622fb69a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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-image-dev
        libsdl2-mixer-dev
        libsdl2-net-dev
        libsdl2-ttf-dev
        libxml2-dev
        ninja-build
    - cmake -G Ninja -B build .
    - cmake --build build