Skip to content

Commit

Permalink
Merge branch 'main' of github.com:rcaelers/workrave
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaelers committed Oct 5, 2024
2 parents 0def0db + 5aa3ced commit b981e12
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ jobs:
run: |
env
pip install Ninja2
export SystemDrive="$SYSTEMDRIVE"
export SystemRoot="$SYSTEMROOT"
export windir="$WINDIR"
cmake -G "Visual Studio 17 2022" -A x64 -B '${{ github.workspace }}/_build' \
-DCMAKE_TOOLCHAIN_FILE=${{ env.VCPKG_ROOT }}/scripts/buildsystems/vcpkg.cmake \
-DVCPKG_TARGET_TRIPLET=x64-windows \
Expand All @@ -107,6 +110,9 @@ jobs:
- name: build
shell: bash
run: |
export SystemDrive="$SYSTEMDRIVE"
export SystemRoot="$SYSTEMROOT"
export windir="$WINDIR"
cmake --build '${{github.workspace}}/_build' --config Release
cmake --install '${{github.workspace}}/_build' --config Release
Expand Down
8 changes: 4 additions & 4 deletions tools/local/cow-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ parse_arguments() {

parse_arguments $*

DIST_DIRS=`find /workspace/deploy -mindepth 1 -type d -print | grep -v "v1_11" | sort -r`
DIST_DIRS=$(find /workspace/deploy -mindepth 1 -type d -print | grep -v "v1_11" | sort -r)
for dir in $DIST_DIRS; do
dist=`basename $dir`
dist=$(basename $dir)
cd $dir
echo Updating $dist builder
DIST=$dist cowbuilder --update
DIST=$dist cowbuilder --update --basepath /var/cache/pbuilder/base-$dist.cow
echo Running build for $dist
DIST=$dist cowbuilder --build workrave*.dsc
DIST=$dist cowbuilder --build workrave*.dsc --basepath /var/cache/pbuilder/base-$dist.cow
done
2 changes: 1 addition & 1 deletion tools/local/ppa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ build_single() {
}

build_all() {
for series in oracular noble jammy focal; do
for series in oracular noble jammy; do
build_single $series
done
}
Expand Down
5 changes: 5 additions & 0 deletions ui/app/org.workrave.gui.gschema.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
<summary></summary>
<description></description>
</key>
<key type="b" name="theme_dark">
<default>false</default>
<summary></summary>
<description></description>
</key>
<key type="b" name="force-x11">
<default>true</default>
<summary></summary>
Expand Down

0 comments on commit b981e12

Please sign in to comment.