Add experimental CI support

This commit is contained in:
Chris Josten 2021-09-06 19:20:00 +02:00
parent 96ecd8e7d8
commit 47903797b0
No known key found for this signature in database
GPG Key ID: A69C050E9FD9FF6A
1 changed files with 27 additions and 0 deletions

27
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,27 @@
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