Skip to content

Commit

Permalink
workflows/neon-unstable: create
Browse files Browse the repository at this point in the history
  • Loading branch information
taj-ny committed Dec 5, 2024
1 parent 8ec812b commit b3dd6c9
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/neon-unstable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: KDE Neon (unstable)

on:
push:
branches: [ main ]
paths-ignore: [ "**.md" ]
pull_request:
branches: [ main ]
paths-ignore: [ "**.md" ]
schedule:
- cron: "0 0 * * *"

jobs:
build:
runs-on: ubuntu-latest
container:
image: invent-registry.kde.org/neon/docker-images/plasma:unstable
options: --user root

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Refresh Packages
run: apt update

- name: Install Dependencies
run: apt install -y git cmake g++ extra-cmake-modules qt6-tools-dev kwin-dev libkf6configwidgets-dev gettext libkf6crash-dev libkf6globalaccel-dev libkf6kio-dev libkf6service-dev libkf6notifications-dev libkf6kcmutils-dev libkdecorations3-dev

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build

- name: Build
run: cmake --build ${{github.workspace}}/build -j

0 comments on commit b3dd6c9

Please sign in to comment.