This commit is contained in:
Price Hiller 2021-10-06 07:23:25 -05:00
parent 2d823e674c
commit ce780a0abc

View File

@ -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"