Merge pull request #223 from MightyCreak/update-cicd

feat(build): use appstreamcli to validate appdata
This commit is contained in:
Creak 2024-01-06 21:40:41 -05:00 committed by GitHub
commit fb5423b788
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 12 deletions

View File

@ -16,8 +16,8 @@ jobs:
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
with: with:
python-version: '3.8' python-version: '3.8'
@ -40,11 +40,11 @@ jobs:
meson-build-test: meson-build-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
with: with:
python-version: '3.8' python-version: '3.8'
- run: sudo apt-get -y install meson appstream appstream-util desktop-file-utils gettext - run: sudo apt-get -y install meson appstream desktop-file-utils gettext
- run: pip install meson ninja - run: pip install meson ninja
- run: meson setup build - run: meson setup build
- run: meson compile -C build - run: meson compile -C build
@ -53,11 +53,11 @@ jobs:
flatpak-build-test: flatpak-build-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: bilelmoussaoui/flatpak-github-actions:gnome-44 image: bilelmoussaoui/flatpak-github-actions:gnome-45
options: --privileged options: --privileged
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
with: with:
python-version: '3.8' python-version: '3.8'
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6 - uses: flatpak/flatpak-github-actions/flatpak-builder@v6

View File

@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Update from GNOME 44 to 45 (@sabriunal) - Update from GNOME 44 to 45 (@sabriunal)
- Flatpak manifest now runs the tests (@sabriunal) - Flatpak manifest now runs the tests (@sabriunal)
- Use `appstreamcli` instead of the deprecated `appstream-util` to validate
appdata (@sabriunal)
### Removed ### Removed
@ -20,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix compatibility with Python 3.12: remove use of `distutils` (@MightyCreak) - Fix compatibility with Python 3.12: remove use of `distutils` (@MightyCreak)
- Fix new errors raised by Flake8 (@MightyCreak) - Fix new errors raised by Flake8 (@MightyCreak)
- Fix the error with the CICD due to the use of `appstreamcli` (@MightyCreak)
## 0.8.2 - 2023-04-16 ## 0.8.2 - 2023-04-16

View File

@ -33,10 +33,10 @@ if build_machine.system() == 'linux'
install_dir: join_paths(get_option('datadir'), 'appdata') install_dir: join_paths(get_option('datadir'), 'appdata')
) )
appstream_util = find_program('appstream-util', required: false) appstreamcli = find_program('appstreamcli', required: false)
if appstream_util.found() if appstreamcli.found()
test('Validate appstream file', appstream_util, test('Validate appstream file', appstreamcli,
args: ['validate', appstream_file] args: ['validate', '--no-net', '--explain', appstream_file]
) )
endif endif
endif endif