-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from taj-ny/workflows
workflows: add more workflows and improve existing ones
- Loading branch information
Showing
6 changed files
with
121 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Fedora 40 | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths-ignore: [ "**.md" ] | ||
pull_request: | ||
branches: [ main ] | ||
paths: [ "**/fedora-40.yml" ] | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: fedora:40 | ||
options: --user root | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Dependencies | ||
run: dnf -y install git cmake extra-cmake-modules gcc-g++ kf6-kwindowsystem-devel plasma-workspace-devel libplasma-devel qt6-qtbase-private-devel qt6-qtbase-devel cmake kwin-devel extra-cmake-modules kwin-devel kf6-knotifications-devel kf6-kio-devel kf6-kcrash-devel kf6-ki18n-devel kf6-kguiaddons-devel libepoxy-devel kf6-kglobalaccel-devel kf6-kcmutils-devel kf6-kconfigwidgets-devel kf6-kdeclarative-devel kdecoration-devel kf6-kglobalaccel kf6-kdeclarative libplasma kf6-kio qt6-qtbase kf6-kguiaddons kf6-ki18n wayland-devel | ||
|
||
- name: Configure CMake | ||
run: cmake -B ${{github.workspace}}/build | ||
|
||
- name: Build | ||
run: cmake --build ${{github.workspace}}/build -j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: NixOS (Plasma 6.0.5) | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths-ignore: [ "**.md" ] | ||
pull_request: | ||
branches: [ main ] | ||
paths: [ "**/nixos-plasma-6-0-5.yml" ] | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Nix | ||
uses: cachix/install-nix-action@v27 | ||
with: | ||
nix_path: nixpkgs=channel:e8c38b73aeb218e27163376a2d617e61a2ad9b59 | ||
|
||
- name: Patch flake.nix | ||
run: sed -i 's/nixos-unstable/e8c38b73aeb218e27163376a2d617e61a2ad9b59/g' flake.nix | ||
|
||
- name: Update flake.lock | ||
run: nix flake update | ||
|
||
- name: Build | ||
run: nix build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: NixOS (Plasma 6.1.5) | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths-ignore: [ "**.md" ] | ||
pull_request: | ||
branches: [ main ] | ||
paths: [ "**/nixos-plasma-6-1-5.yml" ] | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Nix | ||
uses: cachix/install-nix-action@v27 | ||
with: | ||
nix_path: nixpkgs=channel:33bca54e5e23eac33b668ebc71d576203f3ccf3b | ||
|
||
- name: Patch flake.nix | ||
run: sed -i 's/nixos-unstable/33bca54e5e23eac33b668ebc71d576203f3ccf3b/g' flake.nix | ||
|
||
- name: Update flake.lock | ||
run: nix flake update | ||
|
||
- name: Build | ||
run: nix build |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters