Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
d671d058
Commit
d671d058
authored
Apr 12, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the .gitignore, .gitlab-ci.yml, and Dockerfile templates
parent
db6854b2
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
81 additions
and
17 deletions
+81
-17
vendor/gitignore/Android.gitignore
vendor/gitignore/Android.gitignore
+2
-0
vendor/gitignore/Elixir.gitignore
vendor/gitignore/Elixir.gitignore
+1
-0
vendor/gitignore/Global/JetBrains.gitignore
vendor/gitignore/Global/JetBrains.gitignore
+8
-7
vendor/gitignore/Global/Windows.gitignore
vendor/gitignore/Global/Windows.gitignore
+1
-0
vendor/gitignore/Godot.gitignore
vendor/gitignore/Godot.gitignore
+8
-0
vendor/gitignore/Joomla.gitignore
vendor/gitignore/Joomla.gitignore
+0
-1
vendor/gitignore/KiCad.gitignore
vendor/gitignore/KiCad.gitignore
+5
-0
vendor/gitignore/Leiningen.gitignore
vendor/gitignore/Leiningen.gitignore
+1
-0
vendor/gitignore/Node.gitignore
vendor/gitignore/Node.gitignore
+1
-1
vendor/gitignore/Python.gitignore
vendor/gitignore/Python.gitignore
+1
-2
vendor/gitignore/Rails.gitignore
vendor/gitignore/Rails.gitignore
+1
-0
vendor/gitignore/Rust.gitignore
vendor/gitignore/Rust.gitignore
+1
-1
vendor/gitignore/TeX.gitignore
vendor/gitignore/TeX.gitignore
+2
-0
vendor/gitignore/Unity.gitignore
vendor/gitignore/Unity.gitignore
+1
-1
vendor/gitignore/VisualStudio.gitignore
vendor/gitignore/VisualStudio.gitignore
+8
-0
vendor/gitlab-ci-yml/Laravel.gitlab-ci.yml
vendor/gitlab-ci-yml/Laravel.gitlab-ci.yml
+1
-1
vendor/gitlab-ci-yml/Pages/Gatsby.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/Gatsby.gitlab-ci.yml
+17
-0
vendor/gitlab-ci-yml/Pages/Hugo.gitlab-ci.yml
vendor/gitlab-ci-yml/Pages/Hugo.gitlab-ci.yml
+1
-1
vendor/gitlab-ci-yml/Python.gitlab-ci.yml
vendor/gitlab-ci-yml/Python.gitlab-ci.yml
+21
-2
No files found.
vendor/gitignore/Android.gitignore
View file @
d671d058
...
...
@@ -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.
...
...
vendor/gitignore/Elixir.gitignore
View file @
d671d058
...
...
@@ -6,3 +6,4 @@
erl_crash.dump
*.ez
*.beam
/config/*.secret.exs
vendor/gitignore/Global/JetBrains.gitignore
View file @
d671d058
# 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
...
...
@@ -14,7 +14,7 @@
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
# Gradle
:
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
...
...
@@ -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/
...
...
@@ -47,3 +45,6 @@ com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Editor-based Rest Client
.idea/httpRequests
vendor/gitignore/Global/Windows.gitignore
View file @
d671d058
...
...
@@ -15,6 +15,7 @@ $RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp
...
...
vendor/gitignore/Godot.gitignore
0 → 100644
View file @
d671d058
# Godot-specific ignores
.import/
export.cfg
export_presets.cfg
# Mono-specific ignores
.mono/
vendor/gitignore/Joomla.gitignore
View file @
d671d058
/.gitignore
/.htaccess
/administrator/cache/*
/administrator/components/com_admin/*
...
...
vendor/gitignore/KiCad.gitignore
View file @
d671d058
# For PCBs designed using KiCad: http://www.kicad-pcb.org/
# Format documentation: http://kicad-pcb.org/help/file-formats/
# Temporary files
*.000
...
...
@@ -8,6 +9,10 @@
*~
_autosave-*
*.tmp
*-cache.lib
*-rescue.lib
*-save.pro
*-save.kicad_pcb
# Netlist files (exported from Eeschema)
*.net
...
...
vendor/gitignore/Leiningen.gitignore
View file @
d671d058
...
...
@@ -11,3 +11,4 @@ pom.xml.asc
.lein-plugins/
.lein-failures
.nrepl-port
.cpcache/
vendor/gitignore/Node.gitignore
View file @
d671d058
...
...
@@ -36,7 +36,7 @@ build/Release
node_modules/
jspm_packages/
# Type
s
cript v1 declaration files
# Type
S
cript v1 declaration files
typings/
# Optional npm cache directory
...
...
vendor/gitignore/Python.gitignore
View file @
d671d058
...
...
@@ -53,9 +53,8 @@ coverage.xml
# Django stuff:
*.log
.static_storage/
.media/
local_settings.py
db.sqlite3
# Flask stuff:
instance/
...
...
vendor/gitignore/Rails.gitignore
View file @
d671d058
...
...
@@ -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
...
...
vendor/gitignore/Rust.gitignore
View file @
d671d058
...
...
@@ -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 http
s://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
...
...
vendor/gitignore/TeX.gitignore
View file @
d671d058
...
...
@@ -153,7 +153,9 @@ _minted*
*.mw
# nomencl
*.nlg
*.nlo
*.nls
# pax
*.pax
...
...
vendor/gitignore/Unity.gitignore
View file @
d671d058
...
...
@@ -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
...
...
vendor/gitignore/VisualStudio.gitignore
View file @
d671d058
...
...
@@ -64,8 +64,10 @@ StyleCopReport.xml
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
...
...
@@ -248,6 +250,7 @@ ServiceFabricBackup/
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
# Microsoft Fakes
FakesAssemblies/
...
...
@@ -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/
vendor/gitlab-ci-yml/Laravel.gitlab-ci.yml
View file @
d671d058
...
...
@@ -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
...
...
vendor/gitlab-ci-yml/Pages/Gatsby.gitlab-ci.yml
0 → 100644
View file @
d671d058
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
vendor/gitlab-ci-yml/Pages/Hugo.gitlab-ci.yml
View file @
d671d058
# Full project: https://gitlab.com/pages/hugo
image
:
publysher/hugo
image
:
dettmering/hugo-build
pages
:
script
:
...
...
vendor/gitlab-ci-yml/Python.gitlab-ci.yml
View file @
d671d058
# 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
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment