Fix: Fix CI for artifactory tests colliding in parallel run #430
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [pull_request, workflow_dispatch] | |
jobs: | |
conan_linux: | |
runs-on: ubuntu-20.04 | |
env: | |
CONAN_LOGIN_USERNAME_EXTENSIONS_PROD: ${{ secrets.CONAN_USER }} | |
CONAN_PASSWORD_EXTENSIONS_PROD: ${{ secrets.CONAN_PASSWORD }} | |
CONAN_LOGIN_USERNAME_EXTENSIONS_STG: ${{ secrets.CONAN_USER }} | |
CONAN_PASSWORD_EXTENSIONS_STG: ${{ secrets.CONAN_PASSWORD }} | |
ARTIFACTORY_TOKEN: ${{ secrets.ARTIFACTORY_TOKEN }} | |
ART_URL: ${{ secrets.ART_URL }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install -U pip | |
pip install pytest pytest-order "cyclonedx-python-lib>=5.0.0,<6" | |
- name: Install Conan latest | |
run: | | |
pip install conan | |
- name: Run tests - Conan latest / Python 3.8 | |
run: | | |
pytest -v tests | |
- name: Install Conan develop | |
run: | | |
pip install git+https://github.com/conan-io/conan.git@release/2.0 | |
- name: Run tests - Conan develop / Python 3.8 | |
run: | | |
pytest -v tests | |
conan_windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies and Conan latest | |
run: | | |
pip install -U pip | |
pip install pytest pytest-order conan | |
- name: Run Windows-specific tests - Conan latest / Python 3.8 | |
run: | | |
pytest -v -m win32 tests |