-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
54 lines (46 loc) · 1.44 KB
/
.gitlab-ci.yml
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
variables:
CI_IMAGE_TAG: 'opencl'
package: 'CLBlast'
stages:
- test
#- postprocess
before_script:
- apt-get update && apt-get install -y cmake clang
include:
- 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/3fbe3d2dd7288b4c91e8b7b2fbbd98b9bdeeb92a/templates/v3/common.yml'
#- 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v0/common.yml'
#- 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v0/test_v0.7.yml'
#- 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v0/test_v1.0.yml'
#- 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v0/test_dev.yml'
#- 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v0/postprocess_coverage.yml'
#- 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v0/postprocess_documentation.yml'
nvidia:test:dev:
extends: .test
variables:
CI_IMAGE_TAG: 'opencl'
CI_VERSION_TAG: 'dev'
tags:
- cuda
allow_failure: true
amd:test:dev:
extends: .test
variables:
CI_IMAGE_TAG: 'rocm'
CI_VERSION_TAG: 'dev'
tags:
- rocm
allow_failure: true
nvidia:test:v1.3:
extends: .test
variables:
CI_IMAGE_TAG: 'opencl'
CI_VERSION_TAG: 'v1.3'
tags:
- cuda
amd:test:v1.3:
extends: .test
variables:
CI_IMAGE_TAG: 'rocm'
CI_VERSION_TAG: 'v1.3'
tags:
- rocm