2023-09-07 23:47:33 +02:00
|
|
|
name: nightly-opensuse-qt6
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "32 2 * * *"
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
|
|
|
BUILDDIR: /build
|
|
|
|
SRCDIR: ${{ github.workspace }}
|
|
|
|
CMAKE_ARGS: |
|
|
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
|
|
|
-DCMAKE_BUILD_TYPE=Debug
|
|
|
|
-DWITH_QT6=ON
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: docker://opensuse/tumbleweed
|
|
|
|
options: --tmpfs /build:rw --user 0:0
|
|
|
|
steps:
|
2023-09-12 10:09:26 +02:00
|
|
|
- name: "prepare git"
|
|
|
|
shell: bash
|
|
|
|
run: zypper --non-interactive in git-core jq curl
|
2023-09-07 23:47:33 +02:00
|
|
|
- name: "prepare source"
|
2023-09-28 21:50:35 +02:00
|
|
|
uses: calamares/actions/generic-checkout@v5
|
2023-09-10 20:23:06 +02:00
|
|
|
- name: "install dependencies"
|
|
|
|
shell: bash
|
2023-09-28 22:04:07 +02:00
|
|
|
run: ./ci/deps-opensuse-qt6.sh
|
2023-09-07 23:47:33 +02:00
|
|
|
- name: "build"
|
2023-09-28 22:14:31 +02:00
|
|
|
shell: bash
|
|
|
|
run: ./ci/build.sh
|