master
→sfos4.2
: Changes for v0.3.6 (#432) (#435)
#15
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: CI - sfos4.2 branch on latest SFOS (aarch64,armv7hl,i486) | |
env: | |
RELEASE: 4.5.0.16 | |
# See https://hub.docker.com/r/coderus/sailfishos-platform-sdk/tags | |
on: | |
push: | |
tags: | |
- 'release*_sfos4.2/*' | |
- 'rc*_sfos4.2/*' | |
- 'beta*_sfos4.2/*' | |
- 'alpha*_sfos4.2/*' | |
- 'sfos4.2/*' | |
pull_request: | |
branches: | |
- sfos4.2 | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Caching Docker images is not ready yet, see | |
# https://github.com/storeman-developers/harbour-storeman-installer/blob/devel/cache-docker-images_github-ci.md | |
#- name: Cache Docker images of the Sailfish-SDK | |
# id: cache-sdk | |
# uses: actions/cache@v3 | |
# with: | |
# path: $GITHUB_WORKSPACE/… | |
# key: cache | |
- name: Prepare | |
run: mkdir RPMS | |
- name: Build aarch64 on ${{ env.RELEASE }} | |
uses: coderus/github-sfos-build@master | |
with: | |
release: ${{ env.RELEASE }} | |
arch: aarch64 | |
- name: Build armv7hl on ${{ env.RELEASE }} | |
uses: coderus/github-sfos-build@master | |
with: | |
release: ${{ env.RELEASE }} | |
arch: armv7hl | |
- name: Build i486 on ${{ env.RELEASE }} | |
uses: coderus/github-sfos-build@master | |
with: | |
release: ${{ env.RELEASE }} | |
arch: i486 | |
- name: Upload build results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: RPM-build-results | |
path: RPMS/ |