Skip to content

Commit

Permalink
Merge branch 'fix-pages-deployment' into 'master'
Browse files Browse the repository at this point in the history
Fix Pages Deployment

See merge request ShellLogger/ShellLogger!8
  • Loading branch information
jmgate committed Sep 22, 2021
2 parents a642d81 + cca72b7 commit dca0795
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ after_script:
# Create the virtual environment, install the requirements, and save the
# environment to the cache.
Install Requirements:
install requirements:
stage: prepare
timeout: 10m
before_script:
Expand Down Expand Up @@ -82,7 +82,7 @@ Install Requirements:
# Execute the unit tests.
pytest:
stage: test
needs: ["Install Requirements"]
needs: ["install requirements"]
timeout: 5m
cache:
<<: *global_cache
Expand All @@ -107,7 +107,7 @@ pytest:
# Ensure we adhere to PEP8.
flake8:
stage: test
needs: ["Install Requirements"]
needs: ["install requirements"]
timeout: 5m
cache:
<<: *global_cache
Expand All @@ -117,9 +117,9 @@ flake8:


# Test building a distribution.
Build Distribution:
build distribution:
stage: deploy
needs: ["Install Requirements"]
needs: ["install requirements"]
timeout: 5m
cache:
<<: *global_cache
Expand All @@ -134,9 +134,9 @@ Build Distribution:


# Test installation of the package.
Install Package:
install package:
stage: deploy
needs: ["Install Requirements"]
needs: ["install requirements"]
timeout: 5m
cache:
<<: *global_cache
Expand All @@ -145,9 +145,9 @@ Install Package:


# Generate the documentation.
Sphinx:
sphinx:
stage: documentation
needs: ["Install Requirements", "Install Package"]
needs: ["install requirements", "install package"]
timeout: 5m
cache:
<<: *global_cache
Expand All @@ -160,9 +160,9 @@ Sphinx:


# Publish coverage data and documentation (if on the main branch).
Pages:
pages:
stage: publish
needs: ["pytest", "Sphinx"]
needs: ["pytest", "sphinx"]
timeout: 5m
cache:
<<: *global_cache
Expand All @@ -179,7 +179,7 @@ Pages:


# Test that uninstalling from a virtual environment works.
Uninstall Package:
uninstall package:
stage: finish
timeout: 5m
cache:
Expand Down

0 comments on commit dca0795

Please sign in to comment.