File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,21 +25,21 @@ script:
25
25
26
26
# Compress and upload it before touching it
27
27
- cd "$PROJECT_DIR"
28
- - tar czf upload/python3-full.tar.gz python-portable /
28
+ - tar czf upload/python3-full.tar.gz python/
29
29
- curl --upload-file ./upload/python3-full.tar.gz https://transfer.sh/python3-full.tar.gz | tee -a output_urls.txt && echo "" >> output_urls.txt
30
30
31
31
# Check built Python
32
32
- cd "$PROJECT_DIR"
33
- - du -sk python-portable /
34
- - cd python-portable
33
+ - du -sk python/
34
+ - cd python
35
35
- otool -L bin/python3.6
36
36
- ./bin/python3.6 -c 'import ssl; print(ssl.OPENSSL_VERSION)'
37
37
- ./bin/python3.6 -m pip --version
38
38
39
39
# Reduce stand-alone Python and upload it
40
40
- cd "$PROJECT_DIR"
41
- - python process_python_build.py "$PROJECT_DIR/python-portable "
42
- - tar czf upload/python3-reduced.tar.gz python-portable /
41
+ - python process_python_build.py "$PROJECT_DIR/python"
42
+ - tar czf upload/python3-reduced.tar.gz python/
43
43
- curl --upload-file ./upload/python3-reduced.tar.gz https://transfer.sh/python3-reduced.tar.gz | tee -a output_urls.txt && echo "" >> output_urls.txt
44
44
45
45
# Print all uploaded files URLs
Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ tar -zxvf Python-3.6.5.tgz &> /dev/null
19
19
20
20
cd Python-3.6.5
21
21
large_echo " Configure Python"
22
- ./configure MACOSX_DEPLOYMENT_TARGET=10.9 CPPFLAGS=" -I$OPENSSL_ROOT /include" LDFLAGS=" -L$OPENSSL_ROOT /lib" --prefix=" $CURRENT_DIR /python-portable "
22
+ ./configure MACOSX_DEPLOYMENT_TARGET=10.9 CPPFLAGS=" -I$OPENSSL_ROOT /include" LDFLAGS=" -L$OPENSSL_ROOT /lib" --prefix=" $CURRENT_DIR /python"
23
23
large_echo " Build Python"
24
24
make altinstall
You can’t perform that action at this time.
0 commit comments