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
Select Git revision
  • 17-add-asciidoctor-syntax-check-to-ci-tests
  • 3-upload-docker-compose-file-with-services-in-roboticsbuilder
  • 40-repo-is-ros-testing
  • 45-double-pipeline-triggered-if-merge-request-has-melodic-branch-name
  • 46-default-docker-image-name-too-long
  • 48-python3_syntax
  • 52-ddeploy-job-failing-when-enforcing-labels-alt-quick-dind-test
  • 55-collision-between-test-jobs-due-to-dds-autodiscovery-ros2
  • 58-add-yolo-pip-package-support
  • 62-deploy-jobs-do-not-pull-files-from-lfs-custom-docker-image
  • 62-deploy-jobs-do-not-pull-files-from-lfs-manual-lfs-pull
  • 66-jazzy-support
  • 68-git-lfs-error-in-ddeploy-job
  • add-packages
  • dev-image-test
  • master
  • py3-without-industrial-ci-test
  • rtde
  • split-build-and-test
  • test-badges
  • test-lfs-concept
  • test-use-fat-docker-image
  • test/13-add-clang-format-to-the-ci-tests
  • test/configurable-ci-setup-lookup-path
  • tmp-gpg-key-workaround
  • tmp-gpg-key-workaround-2
  • use-minimal-docker
27 results

Target

Select target project
  • tecnalia_robotics-public/gitlab_templates
  • miguel.prada/gitlab_templates
2 results
Select Git revision
  • 17-add-asciidoctor-syntax-check-to-ci-tests
  • 3-upload-docker-compose-file-with-services-in-roboticsbuilder
  • 40-repo-is-ros-testing
  • 45-double-pipeline-triggered-if-merge-request-has-melodic-branch-name
  • 46-default-docker-image-name-too-long
  • 48-python3_syntax
  • 52-ddeploy-job-failing-when-enforcing-labels-alt-quick-dind-test
  • 55-collision-between-test-jobs-due-to-dds-autodiscovery-ros2
  • 58-add-yolo-pip-package-support
  • 62-deploy-jobs-do-not-pull-files-from-lfs-custom-docker-image
  • 62-deploy-jobs-do-not-pull-files-from-lfs-manual-lfs-pull
  • 66-jazzy-support
  • 68-git-lfs-error-in-ddeploy-job
  • add-packages
  • dev-image-test
  • master
  • py3-without-industrial-ci-test
  • rtde
  • split-build-and-test
  • test-badges
  • test-lfs-concept
  • test-use-fat-docker-image
  • test/13-add-clang-format-to-the-ci-tests
  • test/configurable-ci-setup-lookup-path
  • tmp-gpg-key-workaround
  • tmp-gpg-key-workaround-2
  • use-minimal-docker
27 results
Show changes
Commits on Source (3)
shellcheck: shellcheck:
image: koalaman/shellcheck-alpine image: koalaman/shellcheck-alpine
script: 'shellcheck deploy/base/ros_entrypoint.bash scripts/*sh' script: shellcheck deploy/base/ros_entrypoint.bash scripts/*sh
# The ignored rules in hadolint checks are # The ignored rules in hadolint checks are
# DL3006 Always tag the version of an image explicitly # DL3006 Always tag the version of an image explicitly
...@@ -19,4 +19,4 @@ dockerfiles: ...@@ -19,4 +19,4 @@ dockerfiles:
yamllint: yamllint:
image: sdesbure/yamllint image: sdesbure/yamllint
script: "yamllint $(find . \\( -name '*.yml' -o -name '*.yaml' \\))" script: yamllint $(find . -name '*.yml' -o -name '*.yaml')
image: docker:git image: docker:git
variables: variables:
TMPDIR: "/builds/${CI_PROJECT_NAMESPACE}" TMPDIR: /builds/${CI_PROJECT_NAMESPACE}
GIT_LFS_SKIP_SMUDGE: "1" # Avoid fetching the files from LFS when doing git fetch GIT_LFS_SKIP_SMUDGE: 1 # Avoid fetching the files from LFS when doing git fetch
services: services:
- docker:dind - docker:dind
...@@ -25,10 +25,10 @@ before_script: ...@@ -25,10 +25,10 @@ before_script:
variables: variables:
ADDITIONAL_DEBS: curl ADDITIONAL_DEBS: curl
ROS_DISTRO: kinetic ROS_DISTRO: kinetic
ROS_PARALLEL_JOBS: "-j2" # keep this for now, since there seems to be memory limit issues in the ci VM ROS_PARALLEL_JOBS: -j2 # keep this for now, since there seems to be memory limit issues in the ci VM
DOCKER_IMAGE: "${ARTIFACT_DOCKER_URL}/flexbotics-base-devel" DOCKER_IMAGE: ${ARTIFACT_DOCKER_URL}/flexbotics-base-devel
BEFORE_SCRIPT: "bash <(curl -Ls https://git.code.tecnalia.com/tecnalia_robotics-public/gitlab_templates/raw/master/scripts/ci_run_entry_points.sh) $$CATKIN_WORKSPACE" BEFORE_SCRIPT: bash <(curl -Ls https://git.code.tecnalia.com/tecnalia_robotics-public/gitlab_templates/raw/master/scripts/ci_run_entry_points.sh) $$CATKIN_WORKSPACE
CATKIN_CONFIG: '--cmake-args -DCMAKE_CXX_FLAGS=-Wno-ignored-attributes -Wno-int-in-bool-context --' CMAKE_ARGS: -DCMAKE_CXX_FLAGS=-Wno-ignored-attributes -Wno-int-in-bool-context
when: always when: always
industrial_ci_kinetic: industrial_ci_kinetic:
...@@ -39,7 +39,7 @@ industrial_ci_kinetic: ...@@ -39,7 +39,7 @@ industrial_ci_kinetic:
industrial_ci_kinetic_deploy: industrial_ci_kinetic_deploy:
extends: .industrial_ci_kinetic extends: .industrial_ci_kinetic
variables: variables:
AFTER_SCRIPT: "wget -q -O - https://git.code.tecnalia.com/tecnalia_robotics-public/gitlab_templates/raw/master/scripts/pre-deploy-cleanup.bash | bash" AFTER_SCRIPT: wget -q -O - https://git.code.tecnalia.com/tecnalia_robotics-public/gitlab_templates/raw/master/scripts/pre-deploy-cleanup.bash | bash
DOCKER_COMMIT: industrial_ci_image DOCKER_COMMIT: industrial_ci_image
script: script:
- .ci_config/gitlab.sh - .ci_config/gitlab.sh
......
image: docker:git image: docker:git
variables: variables:
TMPDIR: "/builds/${CI_PROJECT_NAMESPACE}" TMPDIR: /builds/${CI_PROJECT_NAMESPACE}
GIT_LFS_SKIP_SMUDGE: "1" # Avoid fetching the files from LFS when doing git fetch GIT_LFS_SKIP_SMUDGE: 1 # Avoid fetching the files from LFS when doing git fetch
services: services:
- docker:dind - docker:dind
...@@ -25,12 +25,12 @@ before_script: ...@@ -25,12 +25,12 @@ before_script:
variables: variables:
ADDITIONAL_DEBS: curl ADDITIONAL_DEBS: curl
ROS_DISTRO: kinetic ROS_DISTRO: kinetic
ROS_PARALLEL_JOBS: "-j2" # keep this for now, since there seems to be memory limit issues in the ci VM ROS_PARALLEL_JOBS: -j2 # keep this for now, since there seems to be memory limit issues in the ci VM
UPSTREAM_WORKSPACE: file UPSTREAM_WORKSPACE: file
ROSINSTALL_FILENAME: ".rosinstall" ROSINSTALL_FILENAME: .rosinstall
DOCKER_IMAGE: "${ARTIFACT_DOCKER_URL}/flexbotics-base-devel" DOCKER_IMAGE: ${ARTIFACT_DOCKER_URL}/flexbotics-base-devel
BEFORE_SCRIPT: "bash <(curl -Ls https://git.code.tecnalia.com/tecnalia_robotics-public/gitlab_templates/raw/master/scripts/ci_run_entry_points.sh) $$CATKIN_WORKSPACE" BEFORE_SCRIPT: bash <(curl -Ls https://git.code.tecnalia.com/tecnalia_robotics-public/gitlab_templates/raw/master/scripts/ci_run_entry_points.sh) $$CATKIN_WORKSPACE
CATKIN_CONFIG: '--cmake-args -DCMAKE_CXX_FLAGS=-Wno-ignored-attributes -Wno-int-in-bool-context --' CMAKE_ARGS: -DCMAKE_CXX_FLAGS=-Wno-ignored-attributes -Wno-int-in-bool-context
when: always when: always
industrial_ci_kinetic: industrial_ci_kinetic:
...@@ -41,7 +41,7 @@ industrial_ci_kinetic: ...@@ -41,7 +41,7 @@ industrial_ci_kinetic:
industrial_ci_kinetic_deploy: industrial_ci_kinetic_deploy:
extends: .industrial_ci_kinetic extends: .industrial_ci_kinetic
variables: variables:
AFTER_SCRIPT: "wget -q -O - https://git.code.tecnalia.com/tecnalia_robotics-public/gitlab_templates/raw/master/scripts/pre-deploy-cleanup.bash | bash" AFTER_SCRIPT: wget -q -O - https://git.code.tecnalia.com/tecnalia_robotics-public/gitlab_templates/raw/master/scripts/pre-deploy-cleanup.bash | bash
DOCKER_COMMIT: industrial_ci_image DOCKER_COMMIT: industrial_ci_image
script: script:
- .ci_config/gitlab.sh - .ci_config/gitlab.sh
......