meta: add GitLab CI

This commit is contained in:
ptrcnull 2021-03-29 15:49:50 +02:00
parent b73b6a290b
commit 18f66b12e2
4 changed files with 13 additions and 0 deletions

6
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,6 @@
build:
stage: build
script:
- ./build.sh
rules:
- if: '$CI_COMMIT_BRANCH == "master"'

7
build.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
for pkg in packages/*; do
cd $pkg
abuild -r
cd ../..
done