Update .gitlab-ci.yml

This commit is contained in:
Kai Kriegel 2021-01-05 17:55:54 +00:00
parent 60067de684
commit ffa95123ae

View File

@ -101,6 +101,21 @@ build_iOS:
- Borepin/Borepin.iOS/bin/iPhone/Debug/Borepin.app.dSYM
- '$env:TEST_FOLDER\' # saving entire Test project so NUnit can run tests
build_GTK:
stage: build
image: registry.gitlab.com/fabinfra/gtk-sharp-build:latest
tags:
- docker
# only:
# - tags # the build process will only be started by git tag commits
script:
- 'nuget restore' # restore Nuget dependencies
- 'msbuild -t:Borepin_GTK' # build the project /p:AndroidKeyStore=True
artifacts:
expire_in: 1 week # save gitlab server space, we copy the files we need to deploy folder later on
paths:
- Borepin/Borepin.GTK/bin/Debug/
# test_job:
# stage: test
# tags: