Skip to content

Instantly share code, notes, and snippets.

@wonderbeyond
Last active February 1, 2023 03:18
Show Gist options
  • Save wonderbeyond/434d3622c2db3d5ff00b4ba4a2a667bc to your computer and use it in GitHub Desktop.
Save wonderbeyond/434d3622c2db3d5ff00b4ba4a2a667bc to your computer and use it in GitHub Desktop.
Install poetry with CI/CD environment
#!/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
@wonderbeyond
Copy link
Author

TODO: make poetry-dynamic-versioning optional

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment