-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy path.gitlab-ci.yml
45 lines (37 loc) · 1.14 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
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: "gnome-builder"
TARBALL_ARTIFACT_PATH: ".flatpak-builder/build/${FLATPAK_MODULE}/_flatpak_build/meson-dist/${CI_PROJECT_NAME}-${CI_COMMIT_TAG}.tar.xz"
.flatpak_vars:
variables:
GIT_SUBMODULE_STRATEGY: normal
# Replace with your manifest path
MANIFEST_PATH: "org.gnome.Builder.Devel.json"
RUNTIME_REPO: "https://nightly.gnome.org/gnome-nightly.flatpakrepo"
# Replace with your application name, as written in the manifest
APP_ID: "org.gnome.Builder.Devel"
BUNDLE: "gnome-builder-git.flatpak"
flatpak@x86_64:
extends:
- '.flatpak_vars'
- '.flatpak@x86_64'
timeout: 90m
flatpak@aarch64:
extends:
- '.flatpak_vars'
- '.flatpak@aarch64'
timeout: 120m
nightly@x86_64:
extends: '.publish_nightly'
needs:
- 'flatpak@x86_64'
nightly@aarch64:
extends: '.publish_nightly'
needs:
- 'flatpak@aarch64'