From 61b0e3f605774f5683929a7bc554e81f2d16c432 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Wed, 2 Jun 2021 02:53:57 +0200 Subject: [PATCH] WIP: pipeline --- .gitlab-ci.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 34bfeab..8f6c044 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,16 +27,9 @@ image: $CI_REGISTRY_IMAGE stages: - setup - - testgo - test - deploy -testgo: - tags: [ docker ] - stage: testgo - script: - - echo $GOPATH - - echo $PATH # Build a docker image in which tests for this repository can run build-testenv: @@ -61,8 +54,6 @@ build-testenv: code_style: tags: [ docker ] stage: test - only: - - web script: - clang-format-11 --dry-run --verbose --Werror $(find ./proto -type f -iname "*.proto") allow_failure: true @@ -71,8 +62,6 @@ code_style: linting: tags: [ docker ] stage: test - only: - - web script: - buf lint @@ -81,8 +70,8 @@ linting: pages: tags: [ docker ] stage: deploy - #only: - #- web + only: + - web script: - export GOPATH=/usr/local/go - export PATH=$PATH:$GOPATH/bin -- GitLab