summaryrefslogtreecommitdiff
path: root/.gitlab/ci/workhorse.gitlab-ci.yml
blob: a40eebd131b7ada96413c6eaf96362abd890fee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
workhorse:
  extends: .workhorse:rules:workhorse
  image: ${GITLAB_DEPENDENCY_PROXY}golang:1.14
  stage: test
  needs: []
  script:
    - rm .git/hooks/post-checkout
    - git checkout .
    - scripts/update-workhorse check
    - make -C workhorse

workhorse:verify:
  extends: .workhorse:rules:workhorse
  image: ${GITLAB_DEPENDENCY_PROXY}golang:1.15
  stage: test
  needs: []
  script:
    - make -C workhorse verify

.workhorse:test:
  extends: .workhorse:rules:workhorse
  services:
    - name: registry.gitlab.com/gitlab-org/build/cng/gitaly:latest
      # Disable the hooks so we don't have to stub the GitLab API
      command: ["/usr/bin/env", "GITALY_TESTING_NO_GIT_HOOKS=1", "/scripts/process-wrapper"]
      alias: gitaly
  variables:
    GITALY_ADDRESS: "tcp://gitaly:8075"
  stage: test
  needs: []
  script:
    - go version
    - apt-get update && apt-get -y install libimage-exiftool-perl
    - make -C workhorse test

workhorse:test using go 1.13:
  extends: .workhorse:test
  image: ${GITLAB_DEPENDENCY_PROXY}golang:1.13

workhorse:test using go 1.14:
  extends: .workhorse:test
  image: ${GITLAB_DEPENDENCY_PROXY}golang:1.14

workhorse:test using go 1.15:
  extends: .workhorse:test
  image: ${GITLAB_DEPENDENCY_PROXY}golang:1.15