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