1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-05-05 22:12:42 +00:00
harbour-sailfin/.gitlab-ci.yml

29 lines
542 B
YAML
Raw Normal View History

2021-09-06 17:20:00 +00:00
variables: &variables
SFOS_VERSION: 4.1.0.24
stages:
- build
image: coderus/sailfishos-platform-sdk:$SFOS_VERSION
.build: &build
stage: build
artifacts:
paths:
2021-09-06 17:40:17 +00:00
- /home/defaultuser/harbour-sailfin/RPMS/*
2021-09-06 17:20:00 +00:00
script:
2021-09-06 17:40:17 +00:00
- cp -a . /home/defaultuser/harbour-sailfin && cd /home/defaultuser/harbour-sailfin
2021-09-06 17:20:00 +00:00
- mb2 -t SailfishOS-$SFOS_VERSION-$MER_ARCH build
build:armv7hl:
variables:
<<: *variables
MER_ARCH: armv7hl
<<: *build
build:aarch64:
variables:
<<: *variables
MER_ARCH: aarch64
<<: *build