Skip to content
Snippets Groups Projects
Commit 8d8e39aa authored by ale's avatar ale
Browse files

added CI config

parent 561b1b82
No related branches found
No related tags found
No related merge requests found
Pipeline #
stages:
- test
- build_src
- build_pkg
- upload
run_tests:
stage: test
image: "ai/test:go"
script: "go-test-runner ./..."
build:src:
stage: build_src
image: "ai/build:base"
script: "build-dsc"
artifacts:
paths:
- build-deb/
only:
- master
build:pkg:
stage: build_pkg
image: "ai/build:base"
script: "build-deb"
dependencies:
- build:src
artifacts:
paths:
- output-deb/
only:
- master
upload:pkg:
stage: upload
image: "ai/pkg:base"
script: "upload-packages -r common urepo@debian.incal.net"
dependencies:
- build:pkg
only:
- master
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment