-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy path.gitlab-ci.yml
34 lines (28 loc) · 1011 Bytes
/
.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
include:
- project: 'gnome/citemplates'
file: 'flatpak/flatpak_ci_initiative.yml'
- component: 'gitlab.gnome.org/GNOME/citemplates/release-service@master'
inputs:
dist-job-name: 'flatpak@x86_64'
tarball-artifact-path: "${TARBALL_ARTIFACT_PATH}"
variables:
FLATPAK_MODULE: "shotwell"
TARBALL_ARTIFACT_PATH: ".flatpak-builder/build/${FLATPAK_MODULE}/_flatpak_build/meson-dist/${CI_COMMIT_TAG}.tar.xz"
GIT_SUBMODULE_STRATEGY: recursive
.vars-devel:
variables:
BUNDLE: "org.gnome.Shotwell.Devel.flatpak"
MANIFEST_PATH: "flatpak/org.gnome.Shotwell.json"
RUNTIME_REPO: "https://flathub.org/repo/flathub.flatpakrepo"
APP_ID: "org.gnome.Shotwell"
TARBALL_ARTIFACT_PATH: ""
flatpak@x86_64:
extends: ['.flatpak@x86_64', '.vars-devel']
flatpak@aarch64:
extends: ['.flatpak@aarch64', '.vars-devel']
nightly@x86_64:
extends: '.publish_nightly'
needs: ['flatpak@x86_64']
nightly@aarch64:
extends: '.publish_nightly'
needs: ['flatpak@aarch64']