You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
38 lines
1.4 KiB
stages: |
|
- test |
|
|
|
flatpak: |
|
image: registry.gitlab.com/alatiera/gnome-nightly-oci/rust-bundle:latest |
|
stage: test |
|
before_script: |
|
# same thing as https://gitlab.gnome.org/alatiera/Hammond/issues/55 |
|
- dnf install -y glib2-devel |
|
# Force regeneration of gresources regardless of artifacts chage |
|
- cd fractal-gtk/res/ && glib-compile-resources --generate resources.xml && cd ../../ |
|
script: |
|
# Build the flatpak repo |
|
- flatpak-builder --stop-at=fractal app flatpak/org.gnome.Fractal.json |
|
- flatpak-builder --run app flatpak/org.gnome.Fractal.json meson --prefix=/app --libdir=/app/lib _build |
|
- flatpak-builder --run app flatpak/org.gnome.Fractal.json ninja -C _build install |
|
- flatpak-builder --finish-only app flatpak/org.gnome.Fractal.json |
|
- flatpak build-export repo app |
|
|
|
# Create a flatpak bundle for designers to use |
|
- flatpak build-bundle repo fractal-dev.flatpak org.gnome.Fractal |
|
# Run the tests |
|
- flatpak-builder --run app flatpak/org.gnome.Fractal.json cargo test |
|
|
|
artifacts: |
|
paths: |
|
- fractal-dev.flatpak |
|
expire_in: 2 days |
|
|
|
cache: |
|
# JOB_NAME - Each job will have it's own cache |
|
# COMMIT_REF_SLUG = Lowercase name of the branch |
|
# ^ Keep diffrerent caches for each branch |
|
key: "$CI_JOB_NAME" |
|
paths: |
|
- .flatpak-builder/cache/ |
|
- target/ |
|
|
|
|