Revize b816322f
Přidáno uživatelem Milan Hotovec před téměř 4 roky(ů)
.gitlab-ci.yml | ||
---|---|---|
54 | 54 |
artifacts: |
55 | 55 |
expire_in: 2 days |
56 | 56 |
paths: |
57 |
- '.\src\Presentation\Leuze.App\bin\Debug\net5.0' #Upload all builds as artifact
|
|
58 |
- '.\src\Presentation\Leuze.Modules\net5.0' #Upload all builds as artifact
|
|
57 |
- './src/Presentation/Leuze.App/bin/Debug/net5.0' #Upload all builds as artifact
|
|
58 |
- './src/Presentation/Leuze.Modules/net5.0' #Upload all builds as artifact
|
|
59 | 59 |
#Job for testing windows |
60 | 60 |
test_job_windows: |
61 | 61 |
stage: test |
62 |
needs: ["build_job_windows"] |
|
62 | 63 |
tags: |
63 | 64 |
- dotnet |
64 | 65 |
- windows10 |
... | ... | |
74 | 75 |
- $CI_COMMIT_MESSAGE =~ /Merge remote-tracking branch/i #auto trigger for remote merge requests from command |
75 | 76 |
script: |
76 | 77 |
- 'dotnet test' #Run tests using console mode of MSTest (Unit) |
77 |
dependencies: |
|
78 |
- build_job_windows |
|
79 | 78 |
#Job for testing linux |
80 | 79 |
test_job_linux: |
81 | 80 |
stage: test |
81 |
needs: ["build_job_linux"] |
|
82 | 82 |
tags: |
83 | 83 |
- dotnet |
84 | 84 |
- linux |
... | ... | |
94 | 94 |
- $CI_COMMIT_MESSAGE =~ /Merge remote-tracking branch/i #auto trigger for remote merge requests from command |
95 | 95 |
script: |
96 | 96 |
- 'dotnet test' #Run tests using console mode of MSTest (Unit) |
97 |
dependencies: |
|
98 |
- build_job_linux |
|
99 | 97 |
##Job for release public |
100 | 98 |
#release_public_job: |
101 | 99 |
# stage: release |
Také k dispozici: Unified diff
cicd Linux path edit, needs test
Re:#8299
@testFull