-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
executable file
·43 lines (40 loc) · 1.05 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
stages:
- build
- deploy
variables:
DOTNET_CLI_TELEMETRY_OPTOUT: "true"
asmbinary:
stage: build
tags:
- windows
only:
- tags
- ci
script:
- dotnet --info
- dotnet publish AutoSaveManager/AutoSaveManager -c Release -r win-x64 --self-contained false -o RRAutoSaveManager_fde
- dotnet publish AutoSaveManager/AutoSaveManager -c Release -r win-x64 --self-contained true -o RRAutoSaveManager_sc
- dotnet run --project AutoSaveManager/QtVersionInfo
artifacts:
name: "RRAutoSaveManager${CI_COMMIT_TAG}"
paths:
- RRAutoSaveManager_fde
- RRAutoSaveManager_sc
- dotnetversion.txt
- qtversion.txt
pages:
image: debian:latest
stage: deploy
only:
- tags
- ci
before_script:
- apt-get update
- apt-get -qyy install libfontconfig1 libdbus-1-3 libx11-xcb1 libxrender1 libxkbcommon-x11-0 xvfb
- apt-get -qyy install p7zip-full wget git python3-pip wine libimage-exiftool-perl
- pip3 install aqtinstall
script:
- ./ci/build-installer.sh
artifacts:
paths:
- public