blob: dc10a58fc72b0ce19fa2bd86a4ee49cdb002ec1d (
plain) (
blame)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
stages:
- build
- tests
.job-push: &job-push
artifacts:
paths:
- logs
- manaverse/logs
when: always
expire_in: 3 week
dependencies: []
.job-always: &job-always
artifacts:
paths:
- logs
- manaverse/logs
when: always
expire_in: 3 week
dependencies: []
mxe_gcc6_shared_32_testsbin:
stage: build
script:
- ls /mxe
- ./tools/ci/jobs/mxe_gcc6_tests.sh --without-manaversegame --without-dyecmd
artifacts:
paths:
- logs
untracked: true
when: always
expire_in: 1 week
dependencies: []
image: registry.gitlab.com/manaverse/mxe:gcc6_shared_32
variables:
PACKAGES: bash
CROSS: i686-w64-mingw32.shared
tags:
- docker
mxe_gcc6_shared_64_testsbin:
stage: build
script:
- ls /mxe
- ./tools/ci/jobs/mxe_gcc6_tests.sh --without-manaversegame --without-dyecmd
artifacts:
paths:
- logs
untracked: true
when: always
expire_in: 1 week
dependencies: []
image: registry.gitlab.com/manaverse/mxe:gcc6_shared_64
variables:
PACKAGES: bash
CROSS: x86_64-w64-mingw32.shared
tags:
- docker
.mxe_gcc6_shared_32_tests:
stage: tests
script:
- tools\ci\jobs\windowstest.cmd files32
- dir
artifacts:
paths:
- logs
when: always
expire_in: 3 week
dependencies:
- mxe_gcc6_shared_32_testsbin
when: manual
tags:
- windows
.mxe_gcc6_shared_64_tests:
stage: tests
script:
- tools\ci\jobs\windowstest.cmd files64
artifacts:
paths:
- logs
when: always
expire_in: 3 week
dependencies:
- mxe_gcc6_shared_64_testsbin
when: manual
tags:
- windows
|