From 186fbac4f81a504f8d4029891242238a2e70166e Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 6 Oct 2021 12:06:46 +0000 Subject: [PATCH 1/3] Update .gitlab-ci.yml --- .gitlab-ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d030aec..ecaab71 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,13 +8,12 @@ default: - apk --purge del .build-deps stages: # List of stages for jobs, and their order of execution - - Build Wheel - - Test + - test + - build pylint: stage: Test - image: python:3.9-alpine script: - python3.9 -m pip install pylint pylint-exit anybadge - mkdir ./pylint @@ -27,8 +26,8 @@ pylint: - ./pylint/ -build-job: # This job runs in the build stage, which runs first. - stage: Build Wheel +build-job: + stage: build script: - echo "Attempting to build distribution wheel" - python -m build --wheel From 83add1cb57246d9c44a83f7f2bff6c385558d49e Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 6 Oct 2021 12:07:04 +0000 Subject: [PATCH 2/3] Update .gitlab-ci.yml --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ecaab71..9eaa0ab 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,12 +8,12 @@ default: - apk --purge del .build-deps stages: # List of stages for jobs, and their order of execution - - test - build + - test pylint: - stage: Test + stage: test script: - python3.9 -m pip install pylint pylint-exit anybadge - mkdir ./pylint From f750ff4d5e7b5810882180de296fb0925d84a659 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 6 Oct 2021 12:18:38 +0000 Subject: [PATCH 3/3] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9eaa0ab..eb3a466 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ default: - image: python:3.9 + image: python:3.9-alpine before_script: - apk add build-base - apk add --no-cache postgresql-libs