-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into immediatealertservice
- Loading branch information
Showing
61 changed files
with
1,415 additions
and
90 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: SailfishOS Build | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
OS_VERSION: 4.5.0.16 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
name: Build App | ||
strategy: | ||
matrix: | ||
arch: ['armv7hl', 'aarch64', 'i486'] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
- name: Prepare | ||
run: docker pull coderus/sailfishos-platform-sdk:$OS_VERSION && mkdir output | ||
|
||
- name: Build ${{ matrix.arch }} | ||
run: docker run --rm --privileged -v $PWD:/share coderus/sailfishos-platform-sdk:$OS_VERSION /bin/bash -c " | ||
mkdir -p build ; | ||
cd build ; | ||
cp -r /share/* . ; | ||
sb2 -t SailfishOS-$OS_VERSION-${{ matrix.arch }} -R zypper --non-interactive ar --no-gpgcheck http://repo.merproject.org/obs/home:/piggz:/kf5/sailfish_latest_${{ matrix.arch }}/ piggz ; | ||
sb2 -t SailfishOS-$OS_VERSION-${{ matrix.arch }} -R zypper --non-interactive refresh ; | ||
sb2 -t SailfishOS-$OS_VERSION-${{ matrix.arch }} -R zypper --non-interactive in -y mpris-qt5-devel libkf5archive-devel kcoreaddons-devel kdb-devel libKDb3-3 mkcal-qt5-devel libicu-devel; | ||
mb2 -t SailfishOS-$OS_VERSION-${{ matrix.arch }} build ; | ||
sudo cp -r RPMS/*.rpm /share/output" | ||
|
||
- name: Upload RPM (${{ matrix.arch }}) | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: rpm-${{ matrix.arch }} | ||
path: output |
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
Submodule libwatchfish
updated
12 files
+165 −0 | callchannelobserver.cpp | |
+75 −0 | callchannelobserver.h | |
+14 −3 | libwatchfish.pri | |
+35 −0 | notificationmonitor.cpp | |
+8 −1 | notificationmonitor_p.h | |
+5 −39 | voicecallcontroller.h | |
+16 −4 | voicecallcontroller_sailfish.cpp | |
+57 −0 | voicecallcontroller_sailfish.h | |
+107 −0 | voicecallcontroller_ubuntu.cpp | |
+65 −0 | voicecallcontroller_ubuntu.h | |
+61 −0 | voicecallcontrollerbase.cpp | |
+62 −0 | voicecallcontrollerbase.h |
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
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
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
Oops, something went wrong.