harbour-seaprint/.github/workflows/build.yml

37 lines
747 B
YAML
Raw Normal View History

2020-09-07 21:00:09 +03:00
name: Screencast build
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master
env:
RELEASE: 3.3.0.14
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2020-09-07 21:05:23 +03:00
- name: update submodules
run: git submodule sync --recursive && git submodule update --init --force --recursive --depth=1
2020-09-07 21:00:09 +03:00
- name: Prepare
run: mkdir output
- name: Build armv7hl
run: docker run --rm --privileged -v $PWD:/share coderus/sailfishos-platform-sdk:$RELEASE /bin/bash -c "
mkdir -p build ;
cd build ;
cp -r /share/* . ;
mb2 -t SailfishOS-$RELEASE-armv7hl build ;
sudo cp -r RPMS/*.rpm /share/output"