Skip to content
Snippets Groups Projects
.gitlab-ci.yml 1.89 KiB
default:
  image: gitlab.desy.de:5555/ewmscp/buildcontainer

stages:
  - build
  - test

build_a:
  stage: build
  script: gitlab/build.sh
  artifacts:
    paths:
      - install/
  tags:
    - kubernetes

build_arm:
  stage: build
  script: gitlab/build.sh
  artifacts:
    paths:
      - install/
  tags:
    - arm

build_d:
  stage: build
  script: gitlab/build.sh
  artifacts:
    paths:
      - install/
  tags:
    - bare-metal, daos

test_d:
  stage: test
  script: gitlab/test.sh tests/auto /tmp
  needs:
    - build_d
  dependencies:
    - build_d
  artifacts:
    paths:
      - results/
  tags:
    - bare-metal, daos

test_dp:
  stage: test
  script: gitlab/test.sh tests/auto /tmp/dfuse
  needs:
    - build_d
  dependencies:
    - build_d
  artifacts:
    paths:
      - results/
  tags:
    - bare-metal, daos

test_dd:
  stage: test
  script: gitlab/test.sh tests/auto.daos /tmp/dfuse
  needs:
    - build_d
  dependencies:
    - build_d
  artifacts:
    paths:
      - results/