mirror of
https://gitlab.com/then-try-this/samplebrain.git
synced 2026-06-28 17:41:37 +00:00
11 lines
245 B
YAML
11 lines
245 B
YAML
build-job:
|
|
stage: build
|
|
image: ubuntu:22.04
|
|
script:
|
|
- apt-get update
|
|
- apt-get install -y git cmake g++ freeglut3-dev qtbase5-dev qt5-qmake qtbase5-dev-tools
|
|
- mkdir -p build
|
|
- cd build
|
|
- cmake ..
|
|
- cmake --build .
|