Skip to content

Commit

Permalink
First attempt to run test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander.A.Utkin committed Sep 19, 2024
1 parent d575f3f commit ba798ef
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04,ubuntu-24.04,macos-14]
os: [ubuntu-22.04,ubuntu-24.04,macos-14,windows-2022]
runs-on: ${{matrix.os}}
env:
# Python 3.12 issue found on MasOS arm64 (darwin) runners, actions/setup-python@v5 incorrect venv setup
Expand Down Expand Up @@ -40,6 +40,14 @@ jobs:
sudo apt-get install -y libunwind-dev
sudo apt-get install -y reindexer-dev
sudo apt-get install -y reindexer-server
- name: Install Reindexer-Dev\Server (Windows)
shell: cmd
if: startsWith(matrix.os, 'windows')
run: |
curl -s https://repo.reindexer.io/win/64/ > list.txt
For /f "tokens=15delims=<>= " %%A in ('findstr "reindexer-3.*" list.txt') do set LastRowCol=%%A
wget -q https://repo.reindexer.io/win/64/%LastRowCol%
%LastRowCol% /S
- name: Set up Python ${{ env.BUILD_PYTHON_VERSION }}
uses: actions/setup-python@v5
env:
Expand Down

0 comments on commit ba798ef

Please sign in to comment.