We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1027903 commit 49f77d2Copy full SHA for 49f77d2
.circleci/config.yml
@@ -43,7 +43,7 @@ jobs:
43
44
upload:
45
docker:
46
- - image: dockbuild/centos7-devtoolset4-gcc5:latest
+ - image: cimg/python:3.10
47
steps:
48
- restore_cache:
49
keys:
@@ -54,8 +54,11 @@ jobs:
54
- run:
55
name: Upload release and prerelease packages
56
command: |
57
+ pip install -U scikit-ci-addons
58
+ # Test if python environment provides at least OpenSSL >= 1.1.1
59
+ # See https://urllib3.readthedocs.io/en/latest/v2-migration-guide.html#ssl-module-is-compiled-with-openssl-1-0-2-k-fips
60
+ python -c "import requests"
61
if [[ "${CIRCLE_BRANCH}" == "main" ]]; then
- pip install -U scikit-ci-addons
62
cd /usr/src/AppLauncher
63
ci_addons publish_github_release commontk/applauncher \
64
--exit-success-if-missing-token \
0 commit comments