mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-06 00:10:04 +01:00
CI: Add Ubuntu 18.04 32bit job.
This commit is contained in:
committed by
Milan Broz
parent
c464d61995
commit
8bbb018a01
@@ -18,3 +18,4 @@ include:
|
|||||||
- local: .gitlab/ci/compilation-gcc.gitlab-ci.yml
|
- local: .gitlab/ci/compilation-gcc.gitlab-ci.yml
|
||||||
- local: .gitlab/ci/compilation-clang.gitlab-ci.yml
|
- local: .gitlab/ci/compilation-clang.gitlab-ci.yml
|
||||||
- local: .gitlab/ci/alpinelinux.yml
|
- local: .gitlab/ci/alpinelinux.yml
|
||||||
|
- local: .gitlab/ci/ubuntu-32bit.yml
|
||||||
|
|||||||
37
.gitlab/ci/ubuntu-32bit.yml
Normal file
37
.gitlab/ci/ubuntu-32bit.yml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
test-mergerq-job-ubuntu-32bit:
|
||||||
|
extends:
|
||||||
|
- .debian-prep
|
||||||
|
tags:
|
||||||
|
- libvirt
|
||||||
|
- ubuntu-bionic-32bit
|
||||||
|
stage: test
|
||||||
|
interruptible: true
|
||||||
|
variables:
|
||||||
|
RUN_SSH_PLUGIN_TEST: "1"
|
||||||
|
rules:
|
||||||
|
- if: $CI_PROJECT_PATH != "cryptsetup/cryptsetup"
|
||||||
|
when: never
|
||||||
|
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|
||||||
|
script:
|
||||||
|
- make -j
|
||||||
|
- make -j -C tests check-programs
|
||||||
|
- sudo -E make check
|
||||||
|
|
||||||
|
test-main-commit-job-ubuntu-32bit:
|
||||||
|
extends:
|
||||||
|
- .debian-prep
|
||||||
|
tags:
|
||||||
|
- libvirt
|
||||||
|
- ubuntu-bionic-32bit
|
||||||
|
stage: test
|
||||||
|
interruptible: true
|
||||||
|
variables:
|
||||||
|
RUN_SSH_PLUGIN_TEST: "1"
|
||||||
|
rules:
|
||||||
|
- if: $CI_PROJECT_PATH != "cryptsetup/cryptsetup"
|
||||||
|
when: never
|
||||||
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_BRANCH =~ /v2\..\.x$/
|
||||||
|
script:
|
||||||
|
- make -j
|
||||||
|
- make -j -C tests check-programs
|
||||||
|
- sudo -E make check
|
||||||
Reference in New Issue
Block a user