Fixed issues with gcc for apk and updated to python version 3.6
continuous-integration/drone/push Build is passing
ci-tests/python-test/pipeline/head There was a failure building this commit

This commit is contained in:
2022-03-20 17:13:29 +02:00
parent a78b5761b5
commit c5c9a67924
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ local Pipeline(name, image) = {
};
[
Pipeline("python-3-5", "python:3.5"),
Pipeline("python-3-6", "python:3.6"),
Pipeline("python-3-7", "python:3.7"),
Pipeline("python-3-8", "python:3.8"),
Pipeline("python-3-9", "python:3.9"),
Vendored
+1 -1
View File
@@ -33,7 +33,7 @@ pipeline {
}
steps {
sh '''
apk add --no-cache libpq-dev
apk --no-cache add --virtual build-dependencies libpq-dev gcc musl-dev
python -m venv ${PY_ENV}
source ${PY_ENV}/bin/activate
export PATH=${PY_ENV}/bin:${PATH}