-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.gitlab-ci.yml
37 lines (36 loc) · 1.11 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
centos:
image: 'dxfeedcapi/dx-builder-linux:centos-6.10'
script:
- chmod +x ./make_ci.sh
- chmod +x ./make_package.sh
- chmod +x ./build.sh
- chmod +x ./scripts/check_build.sh
- chmod +x ./scripts/combine_package.sh
- chmod +x ./scripts/run_test.sh
- mkdir artifacts
- scl enable devtoolset-2 bash
- source /opt/rh/devtoolset-2/enable
- ./make_ci.sh rebuild no-test no-tls
- cp ./build/dxfeed-c-api*.zip ./artifacts
- ./make_ci.sh rebuild no-test
- cp ./build/dxfeed-c-api*.zip ./artifacts
artifacts:
paths:
- ./artifacts/dxfeed-c-api*.zip
debian:
image: 'dxfeedcapi/dx-builder-linux:debian-9'
script:
- chmod +x ./make_ci.sh
- chmod +x ./make_package.sh
- chmod +x ./build.sh
- chmod +x ./scripts/check_build.sh
- chmod +x ./scripts/combine_package.sh
- chmod +x ./scripts/run_test.sh
- mkdir artifacts
- ./make_ci.sh rebuild no-test no-tls
- cp ./build/dxfeed-c-api*.zip ./artifacts
- ./make_ci.sh rebuild no-test
- cp ./build/dxfeed-c-api*.zip ./artifacts
artifacts:
paths:
- ./artifacts/dxfeed-c-api*.zip