6cb4b25788
- KDE neon user mixes KF5 and KF6 and I can't get the dependencies to install - KDE neon unstable was not actually used - Fedora seems more stable for CI purposes.
41 lines
833 B
YAML
41 lines
833 B
YAML
name: ci-push
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- calamares
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
BUILDDIR: /build
|
|
SRCDIR: ${{ github.workspace }}
|
|
CMAKE_ARGS: |
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
|
-DCMAKE_BUILD_TYPE=Debug
|
|
-DWITH_QT6=ON
|
|
-DBUILD_APPSTREAM=ON
|
|
-DBUILD_APPDATA=ON
|
|
|
|
GIT_HASH: ${{ github.event.head_commit.id }}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: docker://registry.fedoraproject.org/fedora:40
|
|
options: --tmpfs /build:rw --user 0:0
|
|
steps:
|
|
- name: "prepare source"
|
|
uses: calamares/actions/generic-checkout@v5
|
|
- name: "install dependencies"
|
|
shell: bash
|
|
run: ./ci/deps-fedora-qt6.sh
|
|
- name: "build"
|
|
shell: bash
|
|
run: ./ci/build.sh
|