Translated using Weblate (Norwegian Bokmål (nb)) #295
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [stable, unstable, development-target] | |
container: | |
image: ghcr.io/elementary/docker:${{ matrix.version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
apt update | |
apt install -y desktop-file-utils gettext libexif-dev libgee-0.8-dev libgeocode-glib-dev libgexiv2-dev libglib2.0-dev libgphoto2-dev libgranite-dev libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev libgtk-3-dev libgudev-1.0-dev libhandy-1-dev libjson-glib-dev libraw-dev libsqlite3-dev libwebp-dev libxml2-utils meson valac | |
- name: Build | |
run: | | |
meson build | |
ninja -C build | |
ninja -C build install | |
flatpak: | |
name: Flatpak | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/elementary/flatpak-platform/runtime:daily | |
options: --privileged | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: flatpak/flatpak-github-actions/flatpak-builder@v6 | |
with: | |
bundle: photos.flatpak | |
manifest-path: io.elementary.photos.yml | |
run-tests: true | |
repository-name: appcenter | |
repository-url: https://flatpak.elementary.io/repo.flatpakrepo | |
cache-key: "flatpak-builder-${{ github.sha }}" | |
lint: | |
runs-on: ubuntu-latest | |
container: | |
image: valalang/lint | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint | |
run: io.elementary.vala-lint -d . |