mirror of
https://github.com/redstrate/Auracite.git
synced 2025-04-21 20:27:46 +00:00
Set the KF version on the CI
This commit is contained in:
parent
4e41949219
commit
e9e5fb5e90
1 changed files with 3 additions and 2 deletions
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
|
@ -9,6 +9,7 @@ on:
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
QT_VERSION: 6.6
|
QT_VERSION: 6.6
|
||||||
|
KF_VERSION: 6.8
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -70,13 +71,13 @@ jobs:
|
||||||
- name: Build KCoreAddons
|
- name: Build KCoreAddons
|
||||||
if: steps.cache-prefix-restore.outputs.cache-hit != 'true'
|
if: steps.cache-prefix-restore.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
git clone https://invent.kde.org/frameworks/kcoreaddons.git
|
git clone --depth 1 --branch ${{ env.KF_VERSION }} https://invent.kde.org/frameworks/kcoreaddons.git
|
||||||
cmake -B ${{ steps.strings.outputs.build-output-dir }}-kca -DCMAKE_PREFIX_PATH=${{ steps.strings.outputs.prefix-dir }} -S kcoreaddons -DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.prefix-dir }} -DBUILD_TESTING=OFF
|
cmake -B ${{ steps.strings.outputs.build-output-dir }}-kca -DCMAKE_PREFIX_PATH=${{ steps.strings.outputs.prefix-dir }} -S kcoreaddons -DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.prefix-dir }} -DBUILD_TESTING=OFF
|
||||||
cmake --build ${{ steps.strings.outputs.build-output-dir }}-kca --target install
|
cmake --build ${{ steps.strings.outputs.build-output-dir }}-kca --target install
|
||||||
- name: Build KCrash
|
- name: Build KCrash
|
||||||
if: steps.cache-prefix-restore.outputs.cache-hit != 'true'
|
if: steps.cache-prefix-restore.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
git clone https://invent.kde.org/frameworks/kcrash.git
|
git clone --depth 1 --branch ${{ env.KF_VERSION }} https://invent.kde.org/frameworks/kcrash.git
|
||||||
cmake -B ${{ steps.strings.outputs.build-output-dir }}-kcrash -DCMAKE_PREFIX_PATH=${{ steps.strings.outputs.prefix-dir }} -S kcrash -DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.prefix-dir }} -DBUILD_TESTING=OFF
|
cmake -B ${{ steps.strings.outputs.build-output-dir }}-kcrash -DCMAKE_PREFIX_PATH=${{ steps.strings.outputs.prefix-dir }} -S kcrash -DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.prefix-dir }} -DBUILD_TESTING=OFF
|
||||||
cmake --build ${{ steps.strings.outputs.build-output-dir }}-kcrash --target install
|
cmake --build ${{ steps.strings.outputs.build-output-dir }}-kcrash --target install
|
||||||
- name: Build KConfig
|
- name: Build KConfig
|
||||||
|
|
Loading…
Add table
Reference in a new issue