68291d7abc
Now that the stable release is on the same codebase, it should be less necessary to have 2 development builds. Also since most performance issues have been fixed, it should not be necessary anymore to build the nightly version in release mode.
31 lines
No EOL
680 B
YAML
31 lines
No EOL
680 B
YAML
stages:
|
|
- check
|
|
- build
|
|
- test
|
|
- deploy
|
|
|
|
variables:
|
|
FLATPAK_MODULE: "fractal"
|
|
MANIFEST_PATH: "build-aux/org.gnome.Fractal.Devel.json"
|
|
APP_ID: "org.gnome.Fractal.Devel"
|
|
|
|
workflow:
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH || $CI_COMMIT_TAG
|
|
|
|
include:
|
|
- local: .gitlab-ci/run_checks.yml
|
|
rules:
|
|
- if: $CI_COMMIT_TAG == null
|
|
- local: .gitlab-ci/build.yml
|
|
rules:
|
|
- if: $CI_COMMIT_TAG == null
|
|
- local: .gitlab-ci/publish_docs.yml
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == "main"
|
|
- local: .gitlab-ci/publish_nightly.yml
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == "main"
|
|
- local: .gitlab-ci/create_release.yml
|
|
rules:
|
|
- if: $CI_COMMIT_TAG |