diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index febcb03d8..6c22731ba 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -521,13 +521,18 @@ jobs: python-version: ${{ matrix.python[1] }} - name: Install wheel - run: python3 -m pip install aerospike --force-reinstall --no-index --find-links=./ + run: python3 -m pip install aerospike --no-index --find-links=./ - run: python3 -m pip install pytest -c requirements.txt working-directory: test # TODO: bug: inputs are not passed in. Just fix this in the refactoring PR - uses: ./.github/actions/run-ee-server + with: + use-server-rc: ${{ inputs.use-server-rc }} + server-tag: ${{ inputs.server-tag }} + docker-hub-username: ${{ secrets.DOCKER_HUB_BOT_USERNAME }} + docker-hub-password: ${{ secrets.DOCKER_HUB_BOT_PW }} - name: Connect to Docker container on remote machine with Docker daemon # DOCKER_HOST contains the IP address of the remote machine @@ -539,12 +544,6 @@ jobs: - run: python3 -m pytest new_tests/ working-directory: test - - name: Cleanup - if: ${{ always() }} - run: | - docker stop aerospike - docker container rm aerospike - - name: Show job status for commit if: ${{ always() && github.event_name != 'push' && github.event_name != 'pull_request' }} uses: myrotvorets/set-commit-status-action@v2.0.0