Skip to content

Commit

Permalink
maintenance: obs tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jgibbon committed Dec 29, 2023
1 parent cc851e9 commit bc161f0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
set -x
assets=()
for asset in RPMS/*.rpm; do
assets+=("-a" "$asset")
assets+=("$asset")
done
tag_name="${GITHUB_REF##*/}"
gh release create "$tag_name" "${assets[@]}"
Expand All @@ -70,7 +70,7 @@ jobs:
set -x
assets=()
for asset in RPMS/*.rpm; do
assets+=("-a" "$asset")
assets+=("$asset")
done
tag_name="${GITHUB_REF##*/}"
gh release create "$tag_name" -p -n "This is a pre-release for testing purposes only. It may or may not be unstable." "${assets[@]}"
Expand Down
2 changes: 1 addition & 1 deletion harbour-slumber.pro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ app_src.depends = privileged-launcher

DISTFILES += rpm/harbour-slumber.changes \
rpm/harbour-slumber.spec \
rpm/harbour-slumber.yaml \


SUBDIRS += \
app_src \
Expand Down
2 changes: 1 addition & 1 deletion main/slumber.pro
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TEMPLATE = app
#TEMPLATE = app

# The name of your application
TARGET = harbour-slumber
Expand Down
13 changes: 9 additions & 4 deletions rpm/harbour-slumber.spec
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ Name: harbour-slumber
%{?qtc_builddir:%define _builddir %qtc_builddir}
Summary: Slumber Sleeptimer
Version: 0.15
Release: 2
Release: 3
Group: Qt/Qt
License: GPLv2
URL: https://github.com/jgibbon/slumber
Source0: %{name}-%{version}.tar.bz2
Source100: harbour-slumber.yaml
# Source100: harbour-slumber.yaml
Requires: sailfishsilica-qt5 >= 0.10.9
Requires: qt5-qtdeclarative-import-sensors
Requires: nemo-qml-plugin-dbus-qt5
Expand Down Expand Up @@ -66,9 +66,14 @@ Links:
# >> build pre
# << build pre

%qtc_qmake5

%qtc_make %{?_smp_mflags}
%qmake5

%make_build

#%qtc_qmake5

#%qtc_make %{?_smp_mflags}

# >> build post
# << build post
Expand Down

0 comments on commit bc161f0

Please sign in to comment.