Welcome to mirror list, hosted at ThFree Co, Russian Federation.

workhorse.gitlab-ci.yml « ci « .gitlab - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29c7edebc4fdf49ef9295438f82c2a52b050ef5b (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
workhorse:verify:
  extends: .workhorse:rules:workhorse
  image: ${GITLAB_DEPENDENCY_PROXY_ADDRESS}golang:${GO_VERSION}
  stage: test
  needs: []
  script:
    - go version
    - make -C workhorse  # test build
    - make -C workhorse verify

.workhorse:test:
  extends: .workhorse:rules:workhorse
  image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/gitlab-build-images/debian-${DEBIAN_VERSION}-ruby-${RUBY_VERSION}-golang-${GO_VERSION}-rust-${RUST_VERSION}:rubygems-${RUBYGEMS_VERSION}-git-2.36-exiftool-12.60
  services:
    - name: redis:${REDIS_VERSION}-alpine
  variables:
    GITALY_ADDRESS: "tcp://127.0.0.1:8075"
  stage: test
  needs:
    - setup-test-env
  before_script:
    - source scripts/utils.sh
    - export BUNDLE_WITHOUT="${BUNDLE_WITHOUT}:default:test:puma:kerberos:metrics:omnibus:ed25519"
    - bundle_install_script
    - go version
    - scripts/gitaly-test-build
    - cp workhorse/config.toml.example workhorse/config.toml
    - sed -i 's|URL.*$|URL = "redis://redis:6379"|g' workhorse/config.toml
  script:
    - make -C workhorse test

workhorse:test go:
  extends: .workhorse:test
  parallel:
    matrix:
      - GO_VERSION: ["1.19", "1.20", "1.21"]
        REDIS_VERSION: ["7.0", "6.2"]
  script:
    - make -C workhorse test-coverage
  coverage: '/\d+.\d+%/'
  artifacts:
    expire_in: 30 days
    paths:
      - workhorse/coverage.html

workhorse:test fips:
  extends: .workhorse:test
  parallel:
    matrix:
      - GO_VERSION: ["1.19", "1.20", "1.21"]
        REDIS_VERSION: ["7.0", "6.2"]
  image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/gitlab-build-images/ubi-${UBI_VERSION}-ruby-${RUBY_VERSION}-golang-${GO_VERSION}-rust-${RUST_VERSION}:rubygems-${RUBYGEMS_VERSION}-git-2.36-exiftool-12.60
  variables:
    FIPS_MODE: 1

workhorse:test race:
  extends: .workhorse:test
  parallel:
    matrix:
      - REDIS_VERSION: ["7.0", "6.2"]
  script:
    - make -C workhorse test-race