version #7
Workflow file for this run
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
name: Build RPMs | |
on: [push, pull_request] | |
env: | |
OS_VERSION: latest | |
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 -R zypper ar http://repo.merproject.org/obs/home:/piggz:/kf5/sailfishos_${OS_VERSION}_${{ matrix.arch }}/ piggz ; | |
sb2 -R zypper refresh ; | |
sb2 -R zypper in -y kcoreaddons-devel; | |
sb2 -R zypper in -y kdb-devel; | |
sb2 -R zypper in -y libKDb3-3; | |
sb2 -R zypper in -y mkcal-qt5-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@v2 | |
with: | |
name: rpm-${{ matrix.arch }} | |
path: output |