Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2019-09-04 01:21:03 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-09-04 01:21:03 +0300
commit0c9c75d9da7001deb412c85ae5417ba1b10d9b02 (patch)
tree0154a6e97aeb301bd9856df3495e506501b9199f /.gitlab-ci.yml
parent5de8a0a260c087a0e20af5a604f6f7c90bddffa7 (diff)
Try to run pipeline only when needed
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml26
1 files changed, 16 insertions, 10 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index db649f269..9b2706e2f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,10 +33,11 @@ ubuntu:devel:
- cmake -B$BUILD_FOLDER -H. $CMAKE_BUILD_OPTIONS
- make VERBOSE=1 -C $BUILD_FOLDER
only:
- # - branches
- - tags
- - web
- - schedules
+ refs:
+ - master
+ - web
+ - schedules
+ - merge_requests
appimage:build:
# image: ubuntu:devel
@@ -51,8 +52,8 @@ appimage:build:
- cmake -B$BUILD_FOLDER -H. $CMAKE_BUILD_OPTIONS
- make VERBOSE=1 -C $BUILD_FOLDER
only:
- # - branches
- - web
+ refs:
+ - web
flatpak:test:
image: ubuntu:18.04
@@ -79,10 +80,10 @@ flatpak:test:
paths:
- flatpak/.flatpak-builder/cache
only:
- # - branches
- - tags
- - web
- - schedules
+ refs:
+ - master
+ - web
+ - schedules
snap:build:
image: ubuntudesktop/gnome-3-28-1804
@@ -104,3 +105,8 @@ snap:build:
artifacts:
paths: ['./*.snap']
expire_in: 10 days
+ only:
+ refs:
+ - master
+ - web
+ - schedules