Skip to content

Commit

Permalink
Create sailfish CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlich committed Dec 2, 2023
1 parent 712118e commit 6553bf3
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/sailfish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: SailfishOS build
on: [push, pull_request]
env:
RELEASE: 4.5.0.18
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Prepare
run: mkdir output

- name: Build armv7hl
id: build_armv7hl
uses: coderus/github-sfos-build@master
with:
release: ${{ env.RELEASE }}
arch: armv7hl

- name: Build aarch64
id: build_aarch64
uses: coderus/github-sfos-build@master
with:
release: ${{ env.RELEASE }}
arch: aarch64

- name: Build i486
id: build_i486
uses: coderus/github-sfos-build@master
with:
release: ${{ env.RELEASE }}
arch: i486

- name: Upload build result
uses: actions/upload-artifact@v2
with:
name: output-rpms
path: RPMS

0 comments on commit 6553bf3

Please sign in to comment.