Skip to content
Snippets Groups Projects
Unverified Commit 3fde7b0f authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Update the .gitignore, .gitlab-ci.yml, and Dockerfile templates

parent 9a54cb36
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -4,7 +4,8 @@
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries
.idea/**/dictionaries
.idea/**/shelf
 
# Sensitive or high-churn files
.idea/**/dataSources/
Loading
Loading
Loading
Loading
@@ -12,3 +12,5 @@ Session.vim
*~
# Auto-generated tag files
tags
# Persistent undo
[._]*.un~
Loading
Loading
@@ -13,6 +13,7 @@
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
Loading
Loading
Loading
Loading
@@ -52,7 +52,7 @@ Carthage/Build
 
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/screenshots/**/*.png
fastlane/test_output
 
# Code Injection
Loading
Loading
Loading
Loading
@@ -64,5 +64,5 @@ Carthage/Build
 
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/screenshots/**/*.png
fastlane/test_output
Loading
Loading
@@ -198,6 +198,9 @@ pythontex-files-*/
# easy-todo
*.lod
 
# xmpincl
*.xmpi
# xindy
*.xdy
 
Loading
Loading
@@ -234,3 +237,6 @@ TSWLatexianTemp*
 
# standalone packages
*.sta
# generated if using elsarticle.cls
*.spl
Loading
Loading
@@ -6,7 +6,7 @@
Assets/AssetStoreTools*
 
# Visual Studio cache directory
/.vs/
.vs/
 
# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
Loading
Loading
@@ -22,6 +22,7 @@ ExportedObj/
*.booproj
*.svd
*.pdb
*.opendb
 
# Unity3D generated meta files
*.pidb.meta
Loading
Loading
Loading
Loading
@@ -240,6 +240,7 @@ Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
ServiceFabricBackup/
*.rptproj.bak
 
# SQL Server files
*.mdf
Loading
Loading
Loading
Loading
@@ -7,7 +7,7 @@
 
image: "chef/chefdk"
services:
- docker:stable-dind
- docker:dind
 
variables:
DOCKER_HOST: "tcp://docker:2375"
Loading
Loading
Loading
Loading
@@ -2,7 +2,7 @@
image: docker:latest
 
services:
- docker:stable-dind
- docker:dind
 
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
Loading
Loading
Loading
Loading
@@ -24,7 +24,7 @@ variables:
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true"
 
# Cache downloaded dependencies and plugins between builds.
# To keep cache across branches add 'key: "$CI_JOB_REF_NAME"'
# To keep cache across branches add 'key: "$CI_JOB_NAME"'
cache:
paths:
- .m2/repository
Loading
Loading
# Lifted from: https://about.gitlab.com/2016/03/10/setting-up-gitlab-ci-for-ios-projects/
# This file assumes an own GitLab CI runner, setup on an OS X system.
# This file assumes an own GitLab CI runner, setup on an macOS system.
stages:
- build
- archive
Loading
Loading
@@ -8,11 +8,11 @@ build_project:
stage: build
script:
- xcodebuild clean -project ProjectName.xcodeproj -scheme SchemeName | xcpretty
- xcodebuild test -project ProjectName.xcodeproj -scheme SchemeName -destination 'platform=iOS Simulator,name=iPhone 6s,OS=9.2' | xcpretty -s
- xcodebuild test -project ProjectName.xcodeproj -scheme SchemeName -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.3' | xcpretty -s
tags:
- ios_9-2
- xcode_7-2
- osx_10-11
- ios_11-3
- xcode_9-3
- macos_10-13
 
archive_project:
stage: archive
Loading
Loading
@@ -25,6 +25,6 @@ archive_project:
paths:
- build/ProjectName.ipa
tags:
- ios_9-2
- xcode_7-2
- osx_10-11
- ios_11-3
- xcode_9-3
- macos_10-13
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment