Skip to content

Commit 0c67683

Browse files
committed
Merge branch 'branch_v1_10' of github.com:rcaelers/workrave into branch_v1_10
# Conflicts: # NEWS # build/travis/ppa.sh
2 parents 6f9cb77 + 45ee926 commit 0c67683

File tree

5 files changed

+19
-27
lines changed

5 files changed

+19
-27
lines changed

.travis.yml

+6-21
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,11 @@ stage_linux: &stage_linux
5454

5555
stage_win32: &stage_win32
5656
<<: *stage_linux
57+
58+
stage_deploy: &stage_deploy
59+
<<: *stage_linux
5760
<<: *stage_github
5861
deploy:
59-
# - provider: releases
60-
# api_key: $GITHUB_TOKEN
61-
# skip_cleanup: true
62-
# file_glob: true
63-
# file: _deploy/*.exe
64-
# draft: true
65-
# on:
66-
# repo: rcaelers/workrave
67-
# branch: branch_v1_10
68-
# tags: true
69-
7062
- provider: script
7163
skip_cleanup: true
7264
on:
@@ -160,16 +152,6 @@ jobs:
160152
CONF_DISABLE="pulse,xfce,gnome3,gstreamer,dbus,mate,indicator"
161153
<<: *stage_linux
162154

163-
- stage: build
164-
env: >
165-
COMPILER="gcc"
166-
DOCKER_IMAGE="ubuntu-bionic"
167-
CONF_GTK_VER="3"
168-
CONF_ENABLE="gnome3,gsettings,xml,pulse,indicator,xfce,mate,dbus,distribution,experimental,gconf,gstreamer,exercises"
169-
CONF_DISABLE=""
170-
DISTCHECK="yes"
171-
<<: *stage_linux
172-
173155
- stage: build
174156
env: >
175157
COMPILER="gcc"
@@ -188,6 +170,7 @@ jobs:
188170
DOCKER_IMAGE="ubuntu-cosmic"
189171
DISTCHECK="yes"
190172
<<: *stage_linux
173+
<<: *stage_deploy
191174

192175
- stage: build
193176
env: >
@@ -222,13 +205,15 @@ jobs:
222205
CONFIGURATION="Release"
223206
DOCKER_IMAGE="mingw-gtk2"
224207
<<: *stage_win32
208+
<<: *stage_deploy
225209

226210
- stage: build
227211
env: >
228212
COMPILER="gcc"
229213
CONFIGURATION="Debug"
230214
DOCKER_IMAGE="mingw-gtk2"
231215
<<: *stage_win32
216+
<<: *stage_deploy
232217

233218
- stage: release
234219
script:

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ http://www.workrave.org
77

88
* Workrave 1.10.30
99

10+
** Prevent "Workrave wants to inhibit shortcuts" on Wayland
11+
** Fix timer bar text color under Wayland
12+
** Do not dim text in time bar when window is not focused.
1013
** Add GetTimerRemaining dbus function.
1114

1215
* Workrave 1.10.28 / 1.10.29

build/travis/build-linux.sh

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/bash -x
22

33
BASEDIR=$(dirname "$0")
44
source ${BASEDIR}/config.sh
@@ -28,7 +28,7 @@ conf_opt_packages()
2828
fi
2929
}
3030

31-
cd /workspace/source
31+
cd ${SOURCES_DIR}
3232

3333
apt-get update -q
3434
apt-get -y -q -V --no-install-recommends install \
@@ -68,11 +68,14 @@ fi
6868
`conf_opt exercises` \
6969
`conf_opt experimental`
7070

71-
if [ -z "$TRAVIS_TAG" -o -z "$DISTCHECK" ]; then
71+
mkdir -p ${DEPLOY_DIR}
72+
73+
if [ -z "$DISTCHECK" ]; then
7274
make && make check
7375
else
7476
make && make dist && make distcheck
7577

76-
mkdir -p ${DEPLOY_DIR}
7778
cp -a workrave*tar.gz ${DEPLOY_DIR}
7879
fi
80+
81+
ls -la ${DEPLOY_DIR}

build/travis/config.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
if [ -d /workspace ]; then
2+
echo "Running in Docker env."
23
ROOT_DIR=/workspace
34
SOURCES_DIR=${ROOT_DIR}/source
45

56
ISCC=${ROOT_DIR}/inno/app/ISCC.exe
67
else
8+
echo "Running in Travis env."
79
SOURCES_DIR=${TRAVIS_BUILD_DIR}
810
fi
911

@@ -15,4 +17,3 @@ MINGW_ENV=${SOURCES_DIR}/build/travis/mingw-env
1517

1618
export DEBFULLNAME="Rob Caelers"
1719
export DEBEMAIL="[email protected]"
18-

build/travis/ppa.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ do
100100
else
101101
echo "Tag build : $TRAVIS_TAG"
102102
cd "$BUILD_DIR/$series"
103-
dput workraveppa workrave_*_source.changes
103+
dput -d workraveppa workrave_*_source.changes
104104
fi
105105
done

0 commit comments

Comments
 (0)