-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
48 lines (42 loc) · 1.13 KB
/
.gitlab-ci.yml
File metadata and controls
48 lines (42 loc) · 1.13 KB
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
include:
- project: sequence/templates/cicd
file: .gitlab-ci.linux.yml
variables:
GIT_SUBMODULE_STRATEGY: recursive
PACKAGE_NAME_NUGET: Sequence.Connectors.Relativity
PACKAGE_NAME_DLL: Sequence.Connectors.Relativity
PUBLISH_CONNECTOR: 1
PUBLISH_NUGETORG: 1
build dev:
needs:
- project: sequence/connectors/entityimportclient
job: package exe dev
ref: main
artifacts: true
artifacts:
paths:
- Sequence.EntityImportClient/
- '**/bin'
- '**/obj'
expire_in: 2 hours
build release:
needs:
- project: sequence/connectors/entityimportclient
job: sign exe release
ref: v0.5.0
artifacts: true
test dev:
script:
- dotnet test --no-build --configuration $CONFIG --collect:"XPlat Code Coverage" --results-directory ./
--filter "Category!=Integration&Category!=IntegrationShort"
--settings coverlet.runsettings
package connector dev:
needs:
- build dev
- test dev
- version check dev
package connector release:
needs:
- build release
- test release
- version check release