git pull origin master
git push backup master
?image: ubuntu:22.04
stages:
- build
- test
build_cmake:
before_script:
- apt-get update -y
- apt-get upgrade -y
- apt-get install
pkg-config
clang
cmake ninja-build
libfreetype6-dev libnotify-dev libsdl2-dev libsqlite3-dev libvulkan-dev
glslang-tools spirv-tools libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev
libx264-dev libpng-dev
libcurl4 libcurl3-gnutls libcurl4-openssl-dev libcurlpp-dev
libogg-dev libopus-dev libopusfile-dev
valgrind -y
stage: test
script:
- mkdir build && cd build
- cmake ..
- make -j$(nproc)
My first somewhat working prototype of gitlab pipeline in case anyone ever needs a .gitlab-ci.yml for ddnetIf i continue making this nicer i might try PRing against ddnet eventho its on github.gitlab/*.yml
without getting git conflicts with this upstream repository.#pragma once
/ header guards would prevent duplicate includes / macro expansion anyway?ddnet=Tutorial
should work once I upload