mirror of
https://gitlab.gnome.org/World/Authenticator.git
synced 2025-03-04 00:34:40 +01:00
23 lines
749 B
YAML
23 lines
749 B
YAML
include:
|
|
- project: 'gnome/citemplates'
|
|
file: 'flatpak/flatpak_ci_initiative.yml'
|
|
|
|
flatpak:
|
|
image: 'registry.gitlab.gnome.org/gnome/gnome-runtime-images/rust_bundle:master'
|
|
variables:
|
|
BUNDLE: "authenticator-nightly.flatpak"
|
|
MANIFEST_PATH: "build-aux/com.belmoussaoui.Authenticator.Devel.json"
|
|
FLATPAK_MODULE: "authenticator"
|
|
APP_ID: "com.belmoussaoui.Authenticator.Devel"
|
|
RUNTIME_REPO: "https://nightly.gnome.org/gnome-nightly.flatpakrepo"
|
|
extends: '.flatpak'
|
|
|
|
rustfmt:
|
|
image: "rust:slim"
|
|
script:
|
|
- rustup component add rustfmt
|
|
- echo -e "" >> src/config.rs
|
|
- echo -e "" >> src/static_resources.rs
|
|
- rustc -Vv && cargo -Vv
|
|
- cargo fmt --version
|
|
- cargo fmt --all -- --color=always --check
|