-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
47 lines (40 loc) · 1.01 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
44
45
46
47
include:
- project: 'core/common'
file: '/templates/ci.yml'
variables:
COMPONENT: oss
package-psinc:
extends: [ .build-packages ]
variables: { MODULE: psinc, MATCH: /^v.*$/ }
deploy-psinc:
needs: [ package-psinc ]
extends: [ .deploy-packages ]
variables: { MODULE: psinc, MATCH: /^v.*$/ }
# These are built by the github action anyway - so do we need them here?
# package-windows:
# stage: build
# rules:
# - if: $CI_PIPELINE_SOURCE == "web"
# script:
# - earthly +windows
# artifacts:
# paths:
# - build/windows/*.7z
# package-appimage:
# stage: build
# rules:
# - if: $CI_PIPELINE_SOURCE == "web"
# when: manual
# script:
# - earthly +appimage
# artifacts:
# paths:
# - build/*.AppImage
# deploy-packages:
# stage: deploy
# rules:
# - if: $CI_COMMIT_TAG
# needs: [ package-all, package-windows ]
# script:
# - scp build/*.deb $DEPLOY_DOWNLOADS/libpsinc/ubuntu/
# - scp build/windows/*.7z $DEPLOY_DOWNLOADS/libpsinc/windows/