Rename branch sfos3.2
→sfos3.1
& name RPM.zip
#401
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 - devel branch on SFOS 3.3.0 (i486) | |
env: | |
RELEASE: 3.3.0.14 | |
on: | |
pull_request: | |
branches: | |
- devel | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 | |
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 i486 | |
uses: coderus/github-sfos-build@old-stable | |
with: | |
release: ${{ env.RELEASE }} | |
arch: i486 | |
- name: Upload build result | |
uses: actions/upload-artifact@v3 | |
with: | |
name: RPM-build-results_devel-i486-sfos3.3.0+ | |
path: RPMS/ | |