mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 22:15:18 +00:00
28 lines
420 B
YAML
28 lines
420 B
YAML
variables: &variables
|
|
SFOS_VERSION: 4.1.0.24
|
|
|
|
stages:
|
|
- build
|
|
|
|
image: coderus/sailfishos-platform-sdk:$SFOS_VERSION
|
|
|
|
.build: &build
|
|
stage: build
|
|
artifacts:
|
|
paths:
|
|
- RPMS/*
|
|
script:
|
|
- mb2 -t SailfishOS-$SFOS_VERSION-$MER_ARCH build
|
|
|
|
build:armv7hl:
|
|
variables:
|
|
<<: *variables
|
|
MER_ARCH: armv7hl
|
|
<<: *build
|
|
|
|
build:aarch64:
|
|
variables:
|
|
<<: *variables
|
|
MER_ARCH: aarch64
|
|
<<: *build
|