From ce780a0abce280d18551f058665e246220769f81 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 6 Oct 2021 07:23:25 -0500 Subject: [PATCH] :pray: --- .gitlab-ci.yml | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a672e32..bd18396 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,6 +12,14 @@ stages: # List of stages for jobs, and their order of execution - test +build-wheel: + stage: build + script: + - echo "Attempting to build distribution wheel" + - python -m build --wheel + - echo "Wheel successfully built!" + + pylint: stage: test script: @@ -26,18 +34,4 @@ pylint: - ./pylint/ -build-job: - stage: build - script: - - echo "Attempting to build distribution wheel" - - python -m build --wheel - - echo "Wheel successfully built!" -sudo gitlab-runner register -n \ - --url https://gitlab.orion-technologies.io \ - --registration-token cz2D-RzpirwRYPKuK1EA \ - --executor docker \ - --description "My Docker Runner" \ - --docker-image "docker:19.03.12" \ - --docker-privileged \ - --docker-volumes "/certs/client"