Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • to-be-continuous/puppeteer
  • another15y/tbc/puppeteer
2 results
Show changes
Commits on Source (2)
include:
- project: 'Orange-OpenSource/tbc/tools/gitlab-ci'
- project: 'to-be-continuous/tools/gitlab-ci'
ref: 'master'
file: '/templates/validation.yml'
- project: 'Orange-OpenSource/tbc/kicker'
- project: 'to-be-continuous/kicker'
ref: 'master'
file: '/templates/validation.yml'
- project: 'Orange-OpenSource/tbc/bash'
- project: 'to-be-continuous/bash'
ref: '1.0.0'
file: 'templates/gitlab-ci-bash.yml'
......
......@@ -70,8 +70,8 @@ Git commits in _to be continuous_ shall be:
1. **atomic** (1 commit `=` 1 and only 1 _thing_),
2. **semantic** (using [semantic-release commit message syntax](https://semantic-release.gitbook.io/semantic-release/#commit-message-format)).
You'll find extensive information about Git commit conventions on the [reference documentation website](https://orange-opensource.gitlab.io/tbc/doc/dev/workflow/#git-commit-guidelines).
You'll find extensive information about Git commit conventions on the [reference documentation website](https://to-be-continuous.gitlab.io/doc/dev/workflow/#git-commit-guidelines).
### Coding Guidelines
The extensive _to be continuous_ coding guidelines can be found on the [reference documentation website](https://orange-opensource.gitlab.io/tbc/doc/dev/guidelines/).
The extensive _to be continuous_ coding guidelines can be found on the [reference documentation website](https://to-be-continuous.gitlab.io/doc/dev/guidelines/).
......@@ -8,8 +8,8 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
- project: 'Orange-OpenSource/tbc/puppeteer'
ref: '1.1.0'
- project: 'to-be-continuous/puppeteer'
ref: '1.2.0'
file: '/templates/gitlab-ci-puppeteer.yml'
# Pipeline steps
......
# =========================================================================================
# Copyright (C) 2021 Orange
# Copyright (C) 2021 Orange & contributors
#
# This program is free software; you can redistribute it and/or modify it under the terms
# of the GNU Lesser General Public License as published by the Free Software Foundation;
......@@ -14,7 +14,7 @@
# Floor, Boston, MA 02110-1301, USA.
# =========================================================================================
variables:
# Default Docker image (can be overriden)
# Default Docker image (can be overridden)
PUPPETEER_IMAGE: "buildkite/puppeteer:latest"
PUPPETEER_PROJECT_DIR: "."
# default production ref name (pattern)
......@@ -22,7 +22,7 @@ variables:
# default integration ref name (pattern)
INTEG_REF: '/^develop$/'
# allowed stages depend on your template type (see: orange-opensource.gitlab.io/tbc/doc/dev-guidelines/#stages)
# allowed stages depend on your template type (see: to-be-continuous.gitlab.io/doc/dev-guidelines/#stages)
stages:
- acceptance
......@@ -183,7 +183,7 @@ stages:
}
function get_latest_template_version() {
tag_json=$(wget -T 5 -q -O - "$CI_API_V4_URL/projects/Orange-OpenSource%2Ftbc%2F$1/repository/tags?per_page=1" || echo "")
tag_json=$(wget -T 5 -q -O - "$CI_API_V4_URL/projects/to-be-continuous%2F$1/repository/tags?per_page=1" || echo "")
echo "$tag_json" | sed -rn 's/^.*"name":"([^"]*)".*$/\1/p'
}
......@@ -200,7 +200,7 @@ stages:
fi
}
if [[ -z "$TEMPLATE_CHECK_UPDATE_DISABLED" ]]; then check_for_update puppeteer "1.1.0"; fi
if [[ -z "$TEMPLATE_CHECK_UPDATE_DISABLED" ]]; then check_for_update puppeteer "1.2.0"; fi
unscope_variables
# ENDSCRIPT
......@@ -214,8 +214,8 @@ puppeteer:
paths:
- $PUPPETEER_PROJECT_DIR/.npm/
services:
- name: "$CI_REGISTRY/orange-opensource/tbc/tools/tracking:master"
command: ["--service", "puppeteer", "1.1.0"]
- name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
command: ["--service", "puppeteer", "1.2.0"]
stage: acceptance
before_script:
- *puppeteer-scripts
......