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"