-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.gitlab-ci.yml
28 lines (26 loc) · 933 Bytes
/
.gitlab-ci.yml
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
28
# SPDX-FileCopyrightText: None
# SPDX-License-Identifier: CC0-1.0
include:
- project: sysadmin/ci-utilities
file:
- /gitlab-templates/linux-qt6.yml
- /gitlab-templates/freebsd-qt6.yml
- /gitlab-templates/flatpak.yml
build_vnc_qtonly:
stage: build
image: ubuntu:22.04
tags:
- Linux
before_script:
- sed -i -e 's/# deb-src/deb-src/g' /etc/apt/sources.list
- apt-get update
- apt-get install --yes eatmydata
# - eatmydata apt-get build-dep --yes --no-install-recommends krdc
# We need this while Ubuntu krdc is qt5 based, remove this and uncomment above
# once that is no longer true
- eatmydata apt-get install --yes cmake g++ extra-cmake-modules qt6-base-dev mesa-common-dev libvncserver-dev
- eatmydata apt-get install --yes --no-install-recommends ninja-build pkg-config
script:
- mkdir -p build && cd build
- cmake -G Ninja ../vnc/qtonly/
- ninja