This commit is contained in:
DeveloperDurp 2026-01-27 05:28:57 -06:00
commit dba7846062
13 changed files with 349 additions and 0 deletions

15
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,15 @@
stages:
- script
ansible-base:
stage: script
variables:
DEBIAN_FRONTEND: noninteractive
image:
name: registry.durp.info/ubuntu:latest
before_script:
- apt update && apt install tzdata ansible python3-pip -y
script:
- ansible-playbook $CI_PROJECT_DIR/base.yml
rules:
- if: '$SCRIPT == "base"'