Commit 0ee33149 authored by Ruben Davila's avatar Ruben Davila Committed by Robert Speicher

Add and update templates for 8.11

parent b4b7adbe
# elm-package generated files # elm-package generated files
elm-stuff/ elm-stuff
# elm-repl generated files # elm-repl generated files
repl-temp-* repl-temp-*
...@@ -22,3 +22,6 @@ _testmain.go ...@@ -22,3 +22,6 @@ _testmain.go
*.exe *.exe
*.test *.test
*.prof *.prof
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
pom.xml pom.xml
pom.xml.asc pom.xml.asc
*jar *.jar
*.class
/lib/ /lib/
/classes/ /classes/
/target/ /target/
......
...@@ -52,7 +52,7 @@ Carthage/Build ...@@ -52,7 +52,7 @@ Carthage/Build
fastlane/report.xml fastlane/report.xml
fastlane/screenshots fastlane/screenshots
#Code Injection # Code Injection
# #
# After new code Injection tools there's a generated folder /iOSInjectionProject # After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode # https://github.com/johnno1962/injectionforxcode
......
...@@ -15,3 +15,7 @@ project/plugins/project/ ...@@ -15,3 +15,7 @@ project/plugins/project/
# Scala-IDE specific # Scala-IDE specific
.scala_dependencies .scala_dependencies
.worksheet .worksheet
# ENSIME specific
.ensime_cache/
.ensime
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
# For development the cache directory can be safely ignored and # For development the cache directory can be safely ignored and
# therefore it is ignored. # therefore it is ignored.
/cache/ /cache/
!/cache/index.html
# Ignore some files and directories from the custom directory. # Ignore some files and directories from the custom directory.
/custom/history/ /custom/history/
/custom/modulebuilder/ /custom/modulebuilder/
...@@ -22,4 +23,5 @@ ...@@ -22,4 +23,5 @@
*.log *.log
# Ignore the new upload directories. # Ignore the new upload directories.
/upload/ /upload/
!/upload/index.html
/upload_backup/ /upload_backup/
...@@ -19,6 +19,9 @@ ...@@ -19,6 +19,9 @@
# *.eps # *.eps
# *.pdf # *.pdf
## Generated if empty string is given at "Please type another file name for output:"
.pdf
## Bibliography auxiliary files (bibtex/biblatex/biber): ## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl *.bbl
*.bcf *.bcf
...@@ -31,6 +34,7 @@ ...@@ -31,6 +34,7 @@
## Build tool auxiliary files: ## Build tool auxiliary files:
*.fdb_latexmk *.fdb_latexmk
*.synctex *.synctex
*.synctex(busy)
*.synctex.gz *.synctex.gz
*.synctex.gz(busy) *.synctex.gz(busy)
*.pdfsync *.pdfsync
...@@ -84,6 +88,10 @@ acs-*.bib ...@@ -84,6 +88,10 @@ acs-*.bib
# gnuplottex # gnuplottex
*-gnuplottex-* *-gnuplottex-*
# gregoriotex
*.gaux
*.gtex
# hyperref # hyperref
*.brf *.brf
...@@ -128,6 +136,9 @@ _minted* ...@@ -128,6 +136,9 @@ _minted*
*.sagetex.py *.sagetex.py
*.sagetex.scmd *.sagetex.scmd
# scrwfile
*.wrt
# sympy # sympy
*.sout *.sout
*.sympy *.sympy
......
# Compiled files # Compiled files
*.tfstate *.tfstate
*.tfstate.backup *.tfstate.backup
# Module directory
.terraform/
...@@ -5,8 +5,9 @@ ...@@ -5,8 +5,9 @@
/[Bb]uilds/ /[Bb]uilds/
/Assets/AssetStoreTools* /Assets/AssetStoreTools*
# Autogenerated VS/MD solution and project files # Autogenerated VS/MD/Consulo solution and project files
ExportedObj/ ExportedObj/
.consulo/
*.csproj *.csproj
*.unityproj *.unityproj
*.sln *.sln
......
# use the official gcc image, based on debian
# can use verions as well, like gcc:5.2
# see https://hub.docker.com/_/gcc/
image: gcc
build:
stage: build
# instead of calling g++ directly you can also use some build toolkit like make
# install the necessary build tools when needed
# before_script:
# - apt update && apt -y install make autoconf
script:
- g++ helloworld.cpp -o mybinary
artifacts:
paths:
- mybinary
# depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
# cache:
# paths:
# - "*.o"
# run tests using the binary built before
test:
stage: test
script:
- ./runmytests.sh
# This template uses the java:8 docker image because there isn't any
# official Grails image at this moment
#
# Grails Framework https://grails.org/ is a powerful Groovy-based web application framework for the JVM
#
# This yml works with Grails 3.x only
# Feel free to change GRAILS_VERSION version with your project version (3.0.1, 3.1.1,...)
# Feel free to change GRADLE_VERSION version with your gradle project version (2.13, 2.14,...)
# If you use Angular profile, this yml it's prepared to work with it
image: java:8
variables:
GRAILS_VERSION: "3.1.9"
GRADLE_VERSION: "2.13"
# We use SDKMan as tool for managing versions
before_script:
- apt-get update -qq && apt-get install -y -qq unzip
- curl -sSL https://get.sdkman.io | bash
- echo sdkman_auto_answer=true > /root/.sdkman/etc/config
- source /root/.sdkman/bin/sdkman-init.sh
- sdk install gradle $GRADLE_VERSION < /dev/null
- sdk use gradle $GRADLE_VERSION
# As it's not a good idea to version gradle.properties feel free to add your
# environments variable here
- echo grailsVersion=$GRAILS_VERSION > gradle.properties
- echo gradleWrapperVersion=2.14 >> gradle.properties
# refresh dependencies from your project
- ./gradlew --refresh-dependencies
# Be aware that if you are using Angular profile,
# Bower cannot be run as root if you don't allow it before.
# Feel free to remove next line if you are not using Bower
- echo {\"allow_root\":true} > /root/.bowerrc
# This build job does the full grails pipeline
# (compile, test, integrationTest, war, assemble).
build:
script:
- ./gradlew build
\ No newline at end of file
# use docker image with latex preinstalled
# since there is no official latex image, use https://github.com/blang/latex-docker
# possible alternative: https://github.com/natlownes/docker-latex
image: blang/latex
build:
script:
- latexmk -pdf
artifacts:
paths:
- "*.pdf"
# This template uses the java:8 docker image because there isn't any
# official JBake image at this moment
#
# JBake https://jbake.org/ is a Java based, open source, static site/blog generator for developers & designers
#
# This yml works with jBake 2.4.0
# Feel free to change JBAKE_VERSION version
#
# HowTo at: https://jorge.aguilera.gitlab.io/howtojbake/
image: java:8
variables:
JBAKE_VERSION: 2.4.0
# We use SDKMan as tool for managing versions
before_script:
- apt-get update -qq && apt-get install -y -qq unzip
- curl -sSL https://get.sdkman.io | bash
- echo sdkman_auto_answer=true > /root/.sdkman/etc/config
- source /root/.sdkman/bin/sdkman-init.sh
- sdk install jbake $JBAKE_VERSION < /dev/null
- sdk use jbake $JBAKE_VERSION
# This build job produced the output directory of your site
pages:
script:
- jbake . public
artifacts:
paths:
- public
\ No newline at end of file
...@@ -19,6 +19,8 @@ cache: ...@@ -19,6 +19,8 @@ cache:
# services such as redis or postgres # services such as redis or postgres
before_script: before_script:
- ruby -v # Print out ruby version for debugging - ruby -v # Print out ruby version for debugging
# Uncomment next line if your rails app needs a JS runtime:
# - apt-get update -q && apt-get install nodejs -yqq
- gem install bundler --no-ri --no-rdoc # Bundler is not installed with the image - gem install bundler --no-ri --no-rdoc # Bundler is not installed with the image
- bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment