Skip to content

Commit

Permalink
commented out test_pypi_deploh and pypi_deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
srivarra committed Jan 25, 2023
1 parent 37fa6dd commit ca5bdb7
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,24 @@ jobs:
script:
- python -m pip install --editable .
- python -m pytest --cov=ark --pycodestyle ark --randomly-seed=24 --randomly-dont-reorganize
- stage: test_pypi_deploy
if: tag IS present
script:
- "travis_wait 120 sleep 7200 &"
- sudo apt-get install patchelf
- python setup.py bdist_wheel
- auditwheel-symbols --manylinux 2_24 dist/*.whl
- auditwheel repair dist/*.whl --plat manylinux_2_17_x86_64
- twine upload -r testpypi --skip-existing /home/travis/build/"$TRAVIS_REPO_SLUG"/wheelhouse/*.whl -u "$TEST_PYPI_USERNAME" -p "$TEST_PYPI_PASSWORD"
- stage: pypi_deploy
if: tag IS present
script:
- "travis_wait 120 sleep 7200 &"
- sudo apt-get install patchelf
- python setup.py bdist_wheel
- auditwheel-symbols --manylinux 2_24 dist/*.whl
- auditwheel repair dist/*.whl --plat manylinux_2_17_x86_64
- twine upload --skip-existing /home/travis/build/"$TRAVIS_REPO_SLUG"/wheelhouse/*.whl -u "$PYPI_USERNAME" -p "$PYPI_PASSWORD"
# - stage: test_pypi_deploy
# if: tag IS present
# script:
# - "travis_wait 120 sleep 7200 &"
# - sudo apt-get install patchelf
# - python setup.py bdist_wheel
# - auditwheel-symbols --manylinux 2_24 dist/*.whl
# - auditwheel repair dist/*.whl --plat manylinux_2_17_x86_64
# - twine upload -r testpypi --skip-existing /home/travis/build/"$TRAVIS_REPO_SLUG"/wheelhouse/*.whl -u "$TEST_PYPI_USERNAME" -p "$TEST_PYPI_PASSWORD"
# - stage: pypi_deploy
# if: tag IS present
# script:
# - "travis_wait 120 sleep 7200 &"
# - sudo apt-get install patchelf
# - python setup.py bdist_wheel
# - auditwheel-symbols --manylinux 2_24 dist/*.whl
# - auditwheel repair dist/*.whl --plat manylinux_2_17_x86_64
# - twine upload --skip-existing /home/travis/build/"$TRAVIS_REPO_SLUG"/wheelhouse/*.whl -u "$PYPI_USERNAME" -p "$PYPI_PASSWORD"
- stage: docker_deploy
if: tag IS present
script:
Expand Down

0 comments on commit ca5bdb7

Please sign in to comment.