2022-06-14 11:33:43 +02:00
|
|
|
name: nightly-debian-11
|
2021-02-01 23:15:15 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "12 23 * * *"
|
2021-02-02 00:33:01 +01:00
|
|
|
workflow_dispatch:
|
2021-02-01 23:15:15 +01:00
|
|
|
|
|
|
|
env:
|
|
|
|
BUILDDIR: /build
|
|
|
|
SRCDIR: ${{ github.workspace }}
|
|
|
|
CMAKE_ARGS: |
|
|
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
|
|
|
-DCMAKE_BUILD_TYPE=Debug
|
2024-01-02 22:34:10 +01:00
|
|
|
-DBUILD_APPSTREAM=ON
|
|
|
|
-DBUILD_APPDATA=ON
|
2021-02-01 23:15:15 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2022-06-07 12:31:02 +02:00
|
|
|
image: docker://debian:11
|
2021-02-01 23:15:15 +01:00
|
|
|
options: --tmpfs /build:rw --user 0:0
|
|
|
|
steps:
|
2023-09-28 22:21:25 +02:00
|
|
|
- name: "prepare git"
|
2022-06-26 23:53:36 +02:00
|
|
|
shell: bash
|
2023-10-01 16:38:03 +02:00
|
|
|
run: |
|
|
|
|
apt-get update
|
|
|
|
apt-get -y install git-core jq curl
|
2021-02-01 23:15:15 +01:00
|
|
|
- name: "prepare source"
|
2023-09-28 21:50:35 +02:00
|
|
|
uses: calamares/actions/generic-checkout@v5
|
2023-09-28 22:21:25 +02:00
|
|
|
- name: "install dependencies"
|
|
|
|
shell: bash
|
|
|
|
run: ./ci/deps-debian11.sh
|
2021-05-28 17:38:30 +02:00
|
|
|
- name: "build"
|
2023-09-28 22:21:25 +02:00
|
|
|
shell: bash
|
|
|
|
run: ./ci/build.sh
|