captcha-helper/.gitlab-ci.yml
2021-07-06 20:14:33 -07:00

22 lines
555 B
YAML

build:amd64:
image: debian:latest
before_script:
- apt-get update
- apt-get install -y valac libwebkit2gtk-4.0-dev
script:
- valac --pkg gtk+-3.0 --pkg webkit2gtk-4.0 signal-captcha-helper.vala
artifacts:
paths:
- signal-captcha-helper
build:arm64:
image: debian:latest
tags: [arm-builder]
before_script:
- apt-get update
- apt-get install -y valac libwebkit2gtk-4.0-dev
script:
- valac --pkg gtk+-3.0 --pkg webkit2gtk-4.0 signal-captcha-helper.vala
artifacts:
paths:
- signal-captcha-helper