Skip to content

Commit

Permalink
Fix CI aer build (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
manoelmarques authored Dec 6, 2022
1 parent 8a1f88d commit 64f4344
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-main-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ runs:
if [ "$cache_hit" == "true" ]; then
pip_result=0
pushd "${BASE_DIR}"
python -m pip install *.whl && pip_result=$? || pip_result=$?
python -m pip install --upgrade --force-reinstall *.whl && pip_result=$? || pip_result=$?
popd
if [ $pip_result == 0 ]; then
echo 'Verifying cached Aer with tools/verify_wheels.py ...'
Expand Down Expand Up @@ -137,7 +137,7 @@ runs:
popd
cp -rf /tmp/qiskit-aer/dist/*.whl "${BASE_DIR}"
pushd "${BASE_DIR}"
python -m pip install *.whl
python -m pip install --upgrade --force-reinstall *.whl
popd
fi
shell: bash

0 comments on commit 64f4344

Please sign in to comment.