diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 13:53:09 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 13:53:09 -0300 | 
| commit | d8b8bc12289a7da31eaec87345803e1a9459b30a (patch) | |
| tree | 271716971b4fbc5cb489d347570a0ad2f32bb46e | |
| parent | d9e8b357758639f568a82f74e9dd0e3f649aceb6 (diff) | |
| download | keyringer-d8b8bc12289a7da31eaec87345803e1a9459b30a.tar.gz keyringer-d8b8bc12289a7da31eaec87345803e1a9459b30a.tar.bz2  | |
Chore: tests: initial GitLab CI/CD integration
| -rw-r--r-- | .gitlab-ci.yml | 18 | 
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..7a052d7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +--- +debian: +  image: debian:testing +  script: +    - apt-get update +    - apt-get install -y git +    - apt-get install -y git-buildpackage lintian piuparts +    - git checkout debian +    - gbp buildpackage --git-ignore-new +    #- lintian --allow-root -v --pedantic ../keyringer_*.deb +    #- piuparts ../keyringer*.deb +    #- mkdir -p dist +    #- mv ../onionprobe_* dist +  artifacts: +    paths: +      - dist +  #only: +  #  - main  | 
