mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-05-28 00:30:23 -04:00
23 lines
828 B
YAML
23 lines
828 B
YAML
# SPDX-FileCopyrightText: 2020 Volker Krause <vkrause@kde.org>
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
include:
|
|
- project: sysadmin/ci-utilities
|
|
file:
|
|
- /gitlab-templates/linux-qt6.yml
|
|
- /gitlab-templates/linux-qt6-next.yml
|
|
- /gitlab-templates/alpine-qt6.yml
|
|
- /gitlab-templates/android-qt6.yml
|
|
- /gitlab-templates/freebsd-qt6.yml
|
|
- /gitlab-templates/windows-qt6.yml
|
|
- /gitlab-templates/xml-lint.yml
|
|
- /gitlab-templates/yaml-lint.yml
|
|
|
|
image_json_validate:
|
|
stage: validate
|
|
image: invent-registry.kde.org/sysadmin/ci-images/suse-qt68:latest
|
|
tags:
|
|
- Linux
|
|
script:
|
|
- find src/imageformats/ -name *.json | xargs -I file bash -c "echo file && jq -e '(.Keys | type == \"array\") and (.MimeTypes | type == \"array\") and (.MimeTypes | length) == (.Keys | length)' file"
|