mirror of
https://gitlab.kit.edu/kit/scc/sys/mail/exim-encrypt-dlfunc.git
synced 2025-12-06 08:43:55 +01:00
Update .gitlab-ci.yml file
This commit is contained in:
37
.gitlab-ci.yml
Normal file
37
.gitlab-ci.yml
Normal file
@ -0,0 +1,37 @@
|
||||
stages:
|
||||
- build
|
||||
- test
|
||||
|
||||
build_buster:
|
||||
stage: build
|
||||
image: debian:buster
|
||||
before_script:
|
||||
- apt-get update && apt-get install -y build-essential exim4-dev libsodium-dev
|
||||
script:
|
||||
- cd src
|
||||
- make all
|
||||
artifacts:
|
||||
paths:
|
||||
- src/genkey
|
||||
- src/libexim-encrypt-dlfunc.so
|
||||
|
||||
build_bullseye:
|
||||
stage: build
|
||||
image: debian:bullseye
|
||||
before_script:
|
||||
- apt-get update && apt-get install -y build-essential exim4-dev libsodium-dev
|
||||
script:
|
||||
- cd src
|
||||
- make all
|
||||
artifacts:
|
||||
paths:
|
||||
- src/genkey
|
||||
- src/libexim-encrypt-dlfunc.so
|
||||
|
||||
test:
|
||||
stage: test
|
||||
before_script:
|
||||
- apt-get update && apt-get install -y exim4-daemon-heavy openssl
|
||||
script:
|
||||
- cd src
|
||||
- ./simple_exim_test.sh
|
||||
Reference in New Issue
Block a user