Skip to content
Snippets Groups Projects
Commit 39c9091a authored by James Lopez's avatar James Lopez
Browse files

Merge branch '10-7-update-files' into 'master'

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

See merge request gitlab-org/gitlab-ce!18338
parents ef04186f d671d058
No related branches found
No related tags found
No related merge requests found
Showing
with 81 additions and 17 deletions
Loading
Loading
@@ -37,8 +37,10 @@ captures/
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
.idea/caches
 
# Keystore files
# Uncomment the following line if you do not want to check your keystore files in.
Loading
Loading
Loading
Loading
@@ -6,3 +6,4 @@
erl_crash.dump
*.ez
*.beam
/config/*.secret.exs
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
 
# User-specific stuff:
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries
 
# Sensitive or high-churn files:
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
Loading
Loading
@@ -14,7 +14,7 @@
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
 
# Gradle:
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
 
Loading
Loading
@@ -22,14 +22,12 @@
cmake-build-debug/
cmake-build-release/
 
# Mongo Explorer plugin:
# Mongo Explorer plugin
.idea/**/mongoSettings.xml
 
## File-based project format:
# File-based project format
*.iws
 
## Plugin-specific files:
# IntelliJ
out/
 
Loading
Loading
@@ -47,3 +45,6 @@ com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Editor-based Rest Client
.idea/httpRequests
Loading
Loading
@@ -15,6 +15,7 @@ $RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp
 
Loading
Loading
# Godot-specific ignores
.import/
export.cfg
export_presets.cfg
# Mono-specific ignores
.mono/
/.gitignore
/.htaccess
/administrator/cache/*
/administrator/components/com_admin/*
Loading
Loading
# For PCBs designed using KiCad: http://www.kicad-pcb.org/
# Format documentation: http://kicad-pcb.org/help/file-formats/
 
# Temporary files
*.000
Loading
Loading
@@ -8,6 +9,10 @@
*~
_autosave-*
*.tmp
*-cache.lib
*-rescue.lib
*-save.pro
*-save.kicad_pcb
 
# Netlist files (exported from Eeschema)
*.net
Loading
Loading
Loading
Loading
@@ -11,3 +11,4 @@ pom.xml.asc
.lein-plugins/
.lein-failures
.nrepl-port
.cpcache/
Loading
Loading
@@ -36,7 +36,7 @@ build/Release
node_modules/
jspm_packages/
 
# Typescript v1 declaration files
# TypeScript v1 declaration files
typings/
 
# Optional npm cache directory
Loading
Loading
Loading
Loading
@@ -53,9 +53,8 @@ coverage.xml
 
# Django stuff:
*.log
.static_storage/
.media/
local_settings.py
db.sqlite3
 
# Flask stuff:
instance/
Loading
Loading
Loading
Loading
@@ -14,6 +14,7 @@ pickle-email-*.html
 
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
config/initializers/secret_token.rb
config/master.key
 
# Only include if you have production secrets in this file, which is no longer a Rails default
# config/secrets.yml
Loading
Loading
Loading
Loading
@@ -3,7 +3,7 @@
/target/
 
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
 
# These are backup files generated by rustfmt
Loading
Loading
Loading
Loading
@@ -153,7 +153,9 @@ _minted*
*.mw
 
# nomencl
*.nlg
*.nlo
*.nls
 
# pax
*.pax
Loading
Loading
Loading
Loading
@@ -5,7 +5,7 @@
[Bb]uilds/
Assets/AssetStoreTools*
 
# Visual Studio 2015 cache directory
# Visual Studio cache directory
/.vs/
 
# Autogenerated VS/MD/Consulo solution and project files
Loading
Loading
Loading
Loading
@@ -64,8 +64,10 @@ StyleCopReport.xml
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
Loading
Loading
@@ -248,6 +250,7 @@ ServiceFabricBackup/
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
 
# Microsoft Fakes
FakesAssemblies/
Loading
Loading
@@ -319,3 +322,8 @@ ASALocalRun/
# MSBuild Binary and Structured Log
*.binlog
 
# NVidia Nsight GPU debugger configuration file
*.nvuser
# MFractors (Xamarin productivity tool) working folder
.mfractor/
Loading
Loading
@@ -32,7 +32,7 @@ before_script:
- apt-get install git nodejs libcurl4-gnutls-dev libicu-dev libmcrypt-dev libvpx-dev libjpeg-dev libpng-dev libxpm-dev zlib1g-dev libfreetype6-dev libxml2-dev libexpat1-dev libbz2-dev libgmp3-dev libldap2-dev unixodbc-dev libpq-dev libsqlite3-dev libaspell-dev libsnmp-dev libpcre3-dev libtidy-dev -yqq
 
# Install php extensions
- docker-php-ext-install mbstring mcrypt pdo_mysql curl json intl gd xml zip bz2 opcache
- docker-php-ext-install mbstring pdo_mysql curl json intl gd xml zip bz2 opcache
 
# Install & enable Xdebug for code coverage reports
- pecl install xdebug
Loading
Loading
image: node:latest
# This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
cache:
paths:
- node_modules/
pages:
script:
- yarn install
- ./node_modules/.bin/gatsby build --prefix-paths
artifacts:
paths:
- public
only:
- master
# Full project: https://gitlab.com/pages/hugo
image: publysher/hugo
image: dettmering/hugo-build
 
pages:
script:
Loading
Loading
# This file is a template, and might need editing before it works on your project.
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/python/tags/
image: python:latest
 
# Change pip's cache directory to be inside the project directory since we can
# only cache local items.
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache"
# Pip's cache doesn't store the python packages
# https://pip.pypa.io/en/stable/reference/pip_install/#caching
#
# If you want to also cache the installed packages, you have to install
# them in a virtualenv and cache it as well.
cache:
paths:
- .cache/pip
- venv/
before_script:
- python -V # Print out python version for debugging
- python -V # Print out python version for debugging
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
 
test:
script:
Loading
Loading
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