Last active
February 1, 2023 03:18
-
-
Save wonderbeyond/434d3622c2db3d5ff00b4ba4a2a667bc to your computer and use it in GitHub Desktop.
Install poetry with CI/CD environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Mainly used with GitLab CI/CD | |
# Original source link of this file: | |
# https://gist.github.com/wonderbeyond/434d3622c2db3d5ff00b4ba4a2a667bc | |
set -euo pipefail | |
export POETRY_HOME=~/poetry | |
command -v curl > /dev/null || apt-get install -y curl | |
curl --connect-timeout 10 -sSL https://install.python-poetry.org/ | POETRY_VERSION=1.3.2 python - | |
# Let other CI jobs use poetry without set PATH | |
ln -s $POETRY_HOME/bin/poetry /usr/local/bin/poetry | |
poetry self add "poetry-dynamic-versioning[plugin]" | |
poetry debug info | |
poetry config cache-dir ${POETRY_CACHE_DIR:-"${POETRY_HOME}/cache"} | |
poetry config virtualenvs.create false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TODO: make poetry-dynamic-versioning optional