Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/Coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Python 3.13
uses: actions/setup-python@v5
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install Python Dependencies
run: |
pip install conan wheel "gcovr>=7,<9"
pip install --upgrade "xmsconan>=2.15.3" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
pip install --upgrade "xmsconan>=2.15.5" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple

- name: Setup Conan
run: xmsconan_conan_setup --remote-url ${{ env.CONAN_REMOTE_URL }} --login
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/XmsCore-CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
# Checkout Sources
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v4
# Setup Python
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 flake8-docstrings flake8-bugbear flake8-import-order pep8-naming
pip install "xmsconan==2.15.3" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
pip install "xmsconan==2.15.5" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
# Generate .flake8 so CI lints with the same config developers use locally.
# Do not inline the flake8 settings here: that duplicates .flake8.jinja and
# the two copies drift apart silently.
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
clang --version
# Checkout Sources
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v4
# Setup Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand All @@ -113,7 +113,7 @@ jobs:
# package_id computation and silently detach builds from the binaries
# already published to the remote. Bump this deliberately.
pip install "conan~=2.31.0" devpi-client wheel
python -m pip install --upgrade "xmsconan==2.15.3" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
python -m pip install --upgrade "xmsconan==2.15.5" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
# Setup Conan
- name: Setup Conan
run: xmsconan_conan_setup --remote-url ${{ env.CONAN_REMOTE_URL }} --login --remove-conancenter
Expand Down Expand Up @@ -242,15 +242,15 @@ jobs:
steps:
# Checkout Sources
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v4
# Install Python Dependencies
- name: Install Python Dependencies
run: |
# conan is pinned to a patch series on purpose: a minor bump can change
# package_id computation and silently detach builds from the binaries
# already published to the remote. Bump this deliberately.
pip install "conan~=2.31.0" devpi-client wheel
pip install --upgrade "xmsconan==2.15.3" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
pip install --upgrade "xmsconan==2.15.5" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
# Setup Conan
- name: Setup Conan
run: xmsconan_conan_setup --remote-url ${{ env.CONAN_REMOTE_URL }} --login
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
steps:
# Checkout Sources
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v4
# Setup Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand All @@ -398,7 +398,7 @@ jobs:
# package_id computation and silently detach builds from the binaries
# already published to the remote. Bump this deliberately.
pip install "conan~=2.31.0" devpi-client wheel
python -m pip install --upgrade "xmsconan==2.15.3" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
python -m pip install --upgrade "xmsconan==2.15.5" -i https://public.aquapi.aquaveo.com/aquaveo/dev/+simple
# Setup Visual Studio
- name: Setup Visual Studio
uses: microsoft/setup-msbuild@v2
Expand Down
Loading