Merge branch 'upstream' into tizen
[platform/upstream/cryptsetup.git] / .gitlab / ci / ubuntu-32bit.yml
1 test-mergerq-job-ubuntu-32bit:
2   extends:
3     - .debian-prep
4   tags:
5     - libvirt
6     - ubuntu-bionic-32bit
7   stage: test
8   interruptible: true
9   variables:
10     RUN_SSH_PLUGIN_TEST: "1"
11   rules:
12     - if: $RUN_SYSTEMD_PLUGIN_TEST != null
13       when: never
14     - if: $CI_PROJECT_PATH != "cryptsetup/cryptsetup"
15       when: never
16     - if: $CI_PIPELINE_SOURCE == "merge_request_event"
17   script:
18     - make -j
19     - make -j -C tests check-programs
20     - sudo -E make check
21
22 test-main-commit-job-ubuntu-32bit:
23   extends:
24     - .debian-prep
25   tags:
26     - libvirt
27     - ubuntu-bionic-32bit
28   stage: test
29   interruptible: true
30   variables:
31     RUN_SSH_PLUGIN_TEST: "1"
32   rules:
33     - if: $RUN_SYSTEMD_PLUGIN_TEST != null
34       when: never
35     - if: $CI_PROJECT_PATH != "cryptsetup/cryptsetup"
36       when: never
37     - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_BRANCH =~ /v2\..\.x$/
38   script:
39     - make -j
40     - make -j -C tests check-programs
41     - sudo -E make check