From 3545035e885ed1f38764e8a0cf950d7e76a0601e Mon Sep 17 00:00:00 2001 From: Piv <18462828+Piv200@users.noreply.github.com> Date: Sun, 13 Sep 2020 21:56:07 +0930 Subject: [PATCH] Remove protocgen/swift build from gitlab ci. Need an image/runner that includes the swift libs and gradle for swift protobuf codegen. As such that will live in a separate branch until it's done. --- .gitlab-ci.yml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 59d0ab9..de9f262 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,42 +3,6 @@ stages: - build - deploy -protoc_base: - image: vato.ddns.net:8083/gradle - stage: protoc - rules: - - changes: - - protobuf/* - script: - - ./gradlew :protobuf:generateProto - -protoc_python: - extends: protoc_base - rules: - - changes: - - pycar/* - - protobuf/* - script: - - ./gradlew :pycar:copyPythonCode - -protoc_swift_Car: - extends: protoc_base - rules: - - changes: - - SwiftyCar/* - - protobuf/* - script: - - ./gradlew :SwiftyCar:copySwiftCode - -protoc_swift_CarController: - extends: protoc_base - rules: - - changes: - - CarControlleriOS/* - - protobuf/* - script: - - ./gradlew :CarControlleriOS:copySwiftCode - build_pycar: image: vato.ddns.net:8083/python-infra:buster stage: build @@ -46,8 +10,6 @@ build_pycar: - changes: - pycar/* - protobuf/* - needs: - - protoc_python script: - cd pycar && python setup.py bdist_wheel && cd .. @@ -58,8 +20,6 @@ build_pycar_docker: - changes: - pycar/* - protobuf/* - needs: - - protoc_python script: - echo ${DOCKER_PASSWORD} | docker login vato.ddns.net:8083 --username ${DOCKER_USERNAME} --password-stdin - docker build -f pycar/Dockerfile --build-arg PYPI_USERNAME=${PYPI_USERNAME} --build-arg PYPI_PASSWORD=${PYPI_PASSWORD} -t vato.ddns.net:8082/pycar:latest pycar