Commit 4ac62282 authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch '50289-vendor-ci-yml-for-the-last-time' into 'master'

Update all gitlab CI templates from gitlab-org/gitlab-ci-yml for the last time

See merge request gitlab-org/gitlab-ce!21929
parents b5c96502 64f2e306
---
title: Update all gitlab CI templates from gitlab-org/gitlab-ci-yml
merge_request: 21929
author:
type: added
...@@ -49,7 +49,7 @@ variables: ...@@ -49,7 +49,7 @@ variables:
POSTGRES_DB: $CI_ENVIRONMENT_SLUG POSTGRES_DB: $CI_ENVIRONMENT_SLUG
KUBERNETES_VERSION: 1.8.6 KUBERNETES_VERSION: 1.8.6
HELM_VERSION: 2.6.1 HELM_VERSION: 2.10.0
DOCKER_DRIVER: overlay2 DOCKER_DRIVER: overlay2
...@@ -605,7 +605,6 @@ rollout 100%: ...@@ -605,7 +605,6 @@ rollout 100%:
--set postgresql.postgresPassword="$POSTGRES_PASSWORD" \ --set postgresql.postgresPassword="$POSTGRES_PASSWORD" \
--set postgresql.postgresDatabase="$POSTGRES_DB" \ --set postgresql.postgresDatabase="$POSTGRES_DB" \
--namespace="$KUBE_NAMESPACE" \ --namespace="$KUBE_NAMESPACE" \
--version="$CI_PIPELINE_ID-$CI_JOB_ID" \
"$name" \ "$name" \
chart/ chart/
......
# An example .gitlab-ci.yml file to test (and optionally report the coverage # This is an example .gitlab-ci.yml file to test (and optionally report the coverage
# results of) your [Julia][1] packages. Please refer to the [documentation][2] # results of) your [Julia][1] packages. Please refer to the [documentation][2]
# for more information about package development in Julia. # for more information about package development in Julia.
# #
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# whatever name you have given to your package. # whatever name you have given to your package.
# #
# [1]: http://julialang.org/ # [1]: http://julialang.org/
# [2]: http://julia.readthedocs.org/ # [2]: https://docs.julialang.org/en/v1/manual/documentation/index.html
# Below is the template to run your tests in Julia # Below is the template to run your tests in Julia
.test_template: &test_definition .test_template: &test_definition
...@@ -18,25 +18,30 @@ ...@@ -18,25 +18,30 @@
script: script:
# Let's run the tests. Substitute `coverage = false` below, if you do not # Let's run the tests. Substitute `coverage = false` below, if you do not
# want coverage results. # want coverage results.
- /opt/julia/bin/julia -e 'Pkg.clone(pwd()); Pkg.test("MyPackage", - julia -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("MyPackage"); Pkg.test("MyPackage"; coverage = true)'
coverage = true)'
# Comment out below if you do not want coverage results. # Comment out below if you do not want coverage results.
- /opt/julia/bin/julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("MyPackage")); - julia -e 'using Pkg; Pkg.add("Coverage");
import MyPackage; cd(joinpath(dirname(pathof(MyPackage)), ".."));
using Coverage; cl, tl = get_summary(process_folder()); using Coverage; cl, tl = get_summary(process_folder());
println("(", cl/tl*100, "%) covered")' println("(", cl/tl*100, "%) covered")'
# Name a test and select an appropriate image. # Name a test and select an appropriate image.
test:0.4.6: # images comes from Docker hub
image: julialang/julia:v0.4.6 test:0.7:
image: julia:0.7
<<: *test_definition
test:1.0:
image: julia:1.0
<<: *test_definition <<: *test_definition
# Maybe you would like to test your package against the development branch: # Maybe you would like to test your package against the development branch:
test:0.5.0-dev: # test:1.1-dev (not sure there is such an image in docker, so not tested yet):
image: julialang/julia:v0.5.0-dev # image: julia:v1.1-dev
# ... allowing for failures, since we are testing against the development # # ... allowing for failures, since we are testing against the development
# branch: # # branch:
allow_failure: true # allow_failure: true
<<: *test_definition # <<: *test_definition
# REMARK: Do not forget to enable the coverage feature for your project, if you # REMARK: Do not forget to enable the coverage feature for your project, if you
# are using code coverage reporting above. This can be done by # are using code coverage reporting above. This can be done by
...@@ -44,11 +49,28 @@ test:0.5.0-dev: ...@@ -44,11 +49,28 @@ test:0.5.0-dev:
# - Navigating to the `CI/CD Pipelines` settings of your project, # - Navigating to the `CI/CD Pipelines` settings of your project,
# - Copying and pasting the default `Simplecov` regex example provided, i.e., # - Copying and pasting the default `Simplecov` regex example provided, i.e.,
# `\(\d+.\d+\%\) covered` in the `test coverage parsing` textfield. # `\(\d+.\d+\%\) covered` in the `test coverage parsing` textfield.
#
# WARNING: This template is using the `julialang/julia` images from [Docker # Example documentation deployment
pages:
image: julia:0.7
stage: deploy
script:
- apt-get update -qq && apt-get install -y git # needed by Documenter
- julia -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("MyPackage");' # rebuild Julia (can be put somewhere else I'm sure
- julia -e 'using Pkg; import MyPackage; Pkg.add("Documenter")' # install Documenter
- julia --color=yes docs/make.jl # make documentation
- mv docs/build public # move to the directory picked up by Gitlab pages
artifacts:
paths:
- public
only:
- master
# WARNING: This template is using the `julia` images from [Docker
# Hub][3]. One can use custom Julia images and/or the official ones found # Hub][3]. One can use custom Julia images and/or the official ones found
# in the same place. However, care must be taken to correctly locate the binary # in the same place. However, care must be taken to correctly locate the binary
# file (`/opt/julia/bin/julia` above), which is usually given on the image's # file (`/opt/julia/bin/julia` above), which is usually given on the image's
# description page. # description page.
# #
# [3]: http://hub.docker.com/ # [3]: https://hub.docker.com/_/julia/
# Jigsaw is a simple static sites generator with Laravel's Blade.
#
# Full project: https://github.com/tightenco/jigsaw
image: php:7.2
# These folders are cached between builds
cache:
paths:
- vendor/
- node_modules/
before_script:
# Update packages
- apt-get update -yqq
# Install dependencies
- apt-get install -yqq gnupg zlib1g-dev libpng-dev
# Install Node 8
- curl -sL https://deb.nodesource.com/setup_8.x | bash -
- apt-get install -yqq nodejs
# Install php extensions
- docker-php-ext-install zip
# Install Composer and project dependencies.
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install
# Install Node dependencies.
- npm install
pages:
script:
- npm run production
- mv build_production public
artifacts:
paths:
- public
only:
- master
# Lifted from: https://about.gitlab.com/2016/03/10/setting-up-gitlab-ci-for-ios-projects/ # Lifted from: https://about.gitlab.com/2016/03/10/setting-up-gitlab-ci-for-ios-projects/
# This file assumes an own GitLab CI runner, set up on a macOS system. # This file assumes an own GitLab CI runner, setup on a macOS system.
stages: stages:
- build - build
- archive - archive
......
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