Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 12 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.9'
python-version: '3.10'

- name: Install dependencies
run: |
Expand All @@ -38,30 +38,27 @@ jobs:
mypy src/ po/

meson-build-test:
runs-on: ubuntu-24.04
# container:
# # Use Ubuntu 23.04 in order to have appstreamcli v0.16 instead of 0.15.
# image: ubuntu:23.04
runs-on: ubuntu-26.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.9'
python-version: '3.10'
- run: sudo apt-get update && sudo apt-get -y install libglib2.0-dev-bin meson appstream desktop-file-utils gettext
- run: meson setup build
- run: meson compile -C build
- run: meson test --print-errorlogs -C build

flatpak-build-test:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
container:
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-48
options: --privileged
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.9'
python-version: '3.10'
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: "diffuse.flatpak"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Update release process documentation (@MightyCreak)

### Fixed

- fix(cicd): update Github CI/CD script (@MightyCreak)

## [0.10.0] - 2025-05-24

### Changed
Expand Down
Loading