forked from piggz/harbour-amazfish
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 882 Bytes
/
sailfish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: SailfishOS build
on:
push: [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