diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c756d2..6f4efc7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -64,11 +64,11 @@ build_UWP: script: - '& "$env:NUGET_PATH" restore' # restore Nuget dependencies - '& "$env:MSBUILD_PATH" /p:Configuration=Release /target:Borepin_UWP' # build the project - artifacts: - expire_in: 1 week # save gitlab server space, we copy the files we need to deploy folder later on - paths: - - '$env:UWP_RELEASE_FOLDER' # saving exe to copy to deploy folder - - '$env:TEST_FOLDER\' # saving entire Test project so NUnit can run tests +# artifacts: +# expire_in: 1 week # save gitlab server space, we copy the files we need to deploy folder later on +# paths: +# - '$env:UWP_RELEASE_FOLDER' # saving exe to copy to deploy folder +# - '$env:TEST_FOLDER\' # saving entire Test project so NUnit can run tests build_Android: stage: build @@ -86,21 +86,21 @@ build_Android: - Borepin/Borepin.Android/bin/Release/com.companyname.borepin-Signed.apk # saving apk to copy to deploy folder - '$env:TEST_FOLDER\' # saving entire Test project so NUnit can run tests -build_iOS: - stage: build - tags: - - macos +#build_iOS: +# stage: build +# tags: +# - macos # only: # - tags # the build process will only be started by git tag commits - script: - - 'nuget restore' # restore Nuget dependencies - - 'msbuild /t:Borepin_iOS /p:Configuration=Debug /p:Platform=iPhone /p:ArchiveOnBuild=true' # 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.iOS/bin/iPhone/Debug/Borepin.ipa - - Borepin/Borepin.iOS/bin/iPhone/Debug/Borepin.app.dSYM - - '$env:TEST_FOLDER\' # saving entire Test project so NUnit can run tests +# script: +# - 'nuget restore' # restore Nuget dependencies +# - 'msbuild /t:Borepin_iOS /p:Configuration=Debug /p:Platform=iPhone /p:ArchiveOnBuild=true' # 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.iOS/bin/iPhone/Debug/Borepin.ipa +# - 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