Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
st-pasha committed Jul 1, 2021
1 parent e870d87 commit ffb58ac
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions ci/Jenkinsfile.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,12 @@ ansiColor('xterm') {
/opt/python/cp37-cp37m/bin/python3.7 ci/ext.py wheel --audit && \
/opt/python/cp38-cp38/bin/python3.8 ci/ext.py wheel --audit && \
/opt/python/cp39-cp39/bin/python3.9 ci/ext.py wheel --audit && \
echo "===== Py3.6 Debug =====" && unzip -p dist/*debug*.whl datatable/_build_info.py && \
echo '===== Py3.6 Debug =====' && unzip -p dist/*debug*.whl datatable/_build_info.py && \
mv dist/*debug*.whl . && \
echo "===== Py3.6 =====" && unzip -p dist/*cp36*.whl datatable/_build_info.py && \
echo "===== Py3.7 =====" && unzip -p dist/*cp37*.whl datatable/_build_info.py && \
echo "===== Py3.8 =====" && unzip -p dist/*cp38*.whl datatable/_build_info.py && \
echo "===== Py3.9 =====" && unzip -p dist/*cp39*.whl datatable/_build_info.py && \
echo '===== Py3.6 =====' && unzip -p dist/*cp36*.whl datatable/_build_info.py && \
echo '===== Py3.7 =====' && unzip -p dist/*cp37*.whl datatable/_build_info.py && \
echo '===== Py3.8 =====' && unzip -p dist/*cp38*.whl datatable/_build_info.py && \
echo '===== Py3.9 =====' && unzip -p dist/*cp39*.whl datatable/_build_info.py && \
mv *debug*.whl dist/ && \
ls -la dist"
"""
Expand Down Expand Up @@ -292,10 +292,10 @@ ansiColor('xterm') {
python ci/ext.py wheel
. /Users/jenkins/anaconda/bin/activate datatable-py39
python ci/ext.py wheel
echo "===== Py3.6 =====" && unzip -p dist/*cp36*.whl datatable/_build_info.py
echo "===== Py3.7 =====" && unzip -p dist/*cp37*.whl datatable/_build_info.py
echo "===== Py3.8 =====" && unzip -p dist/*cp38*.whl datatable/_build_info.py
echo "===== Py3.9 =====" && unzip -p dist/*cp39*.whl datatable/_build_info.py
echo '===== Py3.6 =====' && unzip -p dist/*cp36*.whl datatable/_build_info.py
echo '===== Py3.7 =====' && unzip -p dist/*cp37*.whl datatable/_build_info.py
echo '===== Py3.8 =====' && unzip -p dist/*cp38*.whl datatable/_build_info.py
echo '===== Py3.9 =====' && unzip -p dist/*cp39*.whl datatable/_build_info.py
ls dist
"""
stash name: 'x86_64-macos-wheels', includes: "dist/*.whl"
Expand Down Expand Up @@ -336,12 +336,12 @@ ansiColor('xterm') {
/opt/python/cp37-cp37m/bin/python3.7 ci/ext.py wheel --audit && \
/opt/python/cp38-cp38/bin/python3.8 ci/ext.py wheel --audit && \
/opt/python/cp39-cp39/bin/python3.9 ci/ext.py wheel --audit && \
echo "===== Py3.6 Debug =====" && unzip -p dist/*debug*.whl datatable/_build_info.py && \
echo '===== Py3.6 Debug =====' && unzip -p dist/*debug*.whl datatable/_build_info.py && \
mv dist/*debug*.whl . && \
echo "===== Py3.6 =====" && unzip -p dist/*cp36*.whl datatable/_build_info.py && \
echo "===== Py3.7 =====" && unzip -p dist/*cp37*.whl datatable/_build_info.py && \
echo "===== Py3.8 =====" && unzip -p dist/*cp38*.whl datatable/_build_info.py && \
echo "===== Py3.9 =====" && unzip -p dist/*cp39*.whl datatable/_build_info.py && \
echo '===== Py3.6 =====' && unzip -p dist/*cp36*.whl datatable/_build_info.py && \
echo '===== Py3.7 =====' && unzip -p dist/*cp37*.whl datatable/_build_info.py && \
echo '===== Py3.8 =====' && unzip -p dist/*cp38*.whl datatable/_build_info.py && \
echo '===== Py3.9 =====' && unzip -p dist/*cp39*.whl datatable/_build_info.py && \
mv *debug*.whl dist/ && \
ls -la dist"
"""
Expand Down

0 comments on commit ffb58ac

Please sign in to comment.