Skip to content
Snippets Groups Projects
.gitlab-ci.yml 437 B
Newer Older
Michal Hrusecky's avatar
Michal Hrusecky committed
image: "$CI_REGISTRY_IMAGE"

basic:
  script: BATS_LIB_PATH="/root/bats" tests/help-and-version.bats -F junit | tee report.xml
Michal Hrusecky's avatar
Michal Hrusecky committed
  artifacts:
    reports:
      junit: report.xml

local:
  tags:
    - dind
  script:
    - sh -c 'for i in `seq 0 9`; do [ -e /dev/loop$i ] || mknod /dev/loop$i b 7 $i; done'
    - BATS_LIB_PATH="/root/bats" tests/local-tests.bats -F junit | tee report.xml
Michal Hrusecky's avatar
Michal Hrusecky committed
  artifacts:
    reports:
      junit: report.xml