Skip to content

Commit

Permalink
Debug directories
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis <[email protected]>
  • Loading branch information
DarkaMaul committed Nov 4, 2024
1 parent c199c02 commit 62365db
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:
matrix:
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
# - "3.10"
# - "3.11"
# - "3.12"
# - "3.13"

runs-on: windows-latest
steps:
Expand All @@ -64,22 +64,31 @@ jobs:
- name: Install Python ${{ matrix.python }}
run: uv python install ${{ matrix.python }}

- name: Install OpenSSL
env:
OPENSSL_INSTALLER: "Win64OpenSSL-3_3_2.exe"
OPENSSL_PATH: "C:\\OpenSSL-Win64"
run: |
curl.exe -o "c:\\${env:OPENSSL_INSTALLER}" -fsSL "https://slproweb.com/download/${env:OPENSSL_INSTALLER}"
Start-Process -FilePath "c:\\${env:OPENSSL_INSTALLER}" -ArgumentList "/silent /verysilent /DIR=${env:OPENSSL_PATH}" -NoNewWindow -Wait
# - name: Install OpenSSL
# env:
# OPENSSL_INSTALLER: "Win64OpenSSL-3_3_2.exe"
# OPENSSL_PATH: "C:\\OpenSSL-Win64"
# run: |
# curl.exe -o "c:\\${env:OPENSSL_INSTALLER}" -fsSL "https://slproweb.com/download/${env:OPENSSL_INSTALLER}"
# Start-Process -FilePath "c:\\${env:OPENSSL_INSTALLER}" -ArgumentList "/silent /verysilent /DIR=${env:OPENSSL_PATH}" -NoNewWindow -Wait

- name: Setup rust
uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8
with:
components: rustfmt
toolchain: 1.81.0

- name: Get env variables
shell: bash
run: |
UV_PYTHON_PATH="$(uv python dir)"
echo "PATH=$PATH;$UV_PYTHON_PATH" >> $GITHUB_ENV
echo "PYO3_PYTHON=$UV_PYTHON_PATH/python.exe" >> $GITHUB_ENV
- name: test
run: make test INSTALL_EXTRA=test
run: |
env
make test INSTALL_EXTRA=test
shell: bash
env:
OPENSSL_DIR: "C:\\OpenSSL-Win64"
Expand Down

0 comments on commit 62365db

Please sign in to comment.