Skip to content

Commit 1878d91

Browse files
committed
Trying to fix Windows job
1 parent a17a69c commit 1878d91

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

.github/actions/build-conda-packages/action.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ runs:
77
with:
88
conda-build-version: "24.11.2"
99

10+
- run: ls C:\Miniconda\Lib
11+
shell: bash -l {0}
12+
13+
- run: ls C:\Miniconda\Library\bin
14+
shell: bash -l {0}
15+
1016
- run: conda build --no-anaconda-upload --output-folder dist .
1117
# See https://github.com/conda-incubator/setup-miniconda/blame/059455a698430d8b68fa317268fa2e3da3492a98/README.md#L609-L610.
1218
shell: bash -l {0}

.github/actions/build-java-runtime/action.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ runs:
99
steps:
1010
- uses: astral-sh/setup-uv@v5
1111
with:
12-
# The cache key already contains the OS and the architecture.
13-
cache-suffix: ${{ inputs.python-version }}
1412
enable-cache: true
1513
python-version: ${{ inputs.python-version }}
1614
version: "0.5.16"

.github/workflows/test.yaml

+12-12
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ jobs:
1010
strategy:
1111
matrix:
1212
runner:
13-
- macos-13 # x64
14-
- macos-14 # arm64
13+
# - macos-13 # x64
14+
# - macos-14 # arm64
1515
- ubuntu-24.04
16-
- ubuntu-24.04-arm64 # GitHub-hosted larger runner in the ActiveViam organization.
17-
- windows-2022
16+
# - ubuntu-24.04-arm64 # GitHub-hosted larger runner in the ActiveViam organization.
17+
# - windows-2022
1818
python:
1919
- "3.10"
2020
include:
2121
- runner: ubuntu-24.04
2222
python: "3.11"
23-
- runner: ubuntu-24.04
24-
python: "3.12"
25-
- runner: ubuntu-24.04
26-
python: "3.13"
23+
# - runner: ubuntu-24.04
24+
# python: "3.12"
25+
# - runner: ubuntu-24.04
26+
# python: "3.13"
2727
fail-fast: false
2828
steps:
2929
- uses: actions/checkout@v4
@@ -62,10 +62,10 @@ jobs:
6262
strategy:
6363
matrix:
6464
runner:
65-
- macos-13 # x64
66-
- macos-14 # arm64
67-
- ubuntu-24.04
68-
- ubuntu-24.04-arm64 # GitHub-hosted larger runner in the ActiveViam organization.
65+
# - macos-13 # x64
66+
# - macos-14 # arm64
67+
# - ubuntu-24.04
68+
# - ubuntu-24.04-arm64 # GitHub-hosted larger runner in the ActiveViam organization.
6969
- windows-2022
7070
steps:
7171
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)