Skip to content

Commit e4b675a

Browse files
committed
Remove x86-windows
1 parent 155c450 commit e4b675a

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- name: x86-windows
16-
image: windows-2022
17-
cmake-args: -A Win32 -D ARCHITECTURE=x86
18-
- name: x86_64-windows
19-
image: windows-2022
20-
cmake-args: -A x64 -D ARCHITECTURE=x86_64
2115
- name: x86_64-linux
2216
image: ubuntu-22.04
2317
cmake-args: -D ARCHITECTURE=x86_64
18+
- name: x86_64-windows
19+
image: windows-2022
20+
cmake-args: -A x64 -D ARCHITECTURE=x86_64
2421
- name: x86_64-darwin
2522
image: macos-13
2623
cmake-args: -D CMAKE_OSX_ARCHITECTURES=x86_64 -D ARCHITECTURE=x86_64
@@ -50,8 +47,21 @@ jobs:
5047
- uses: actions/checkout@v4
5148
- uses: actions/download-artifact@v4
5249
with:
53-
name: x86-windows
54-
path: src/sdf/ndtable/x86-windows
50+
name: x86_64-linux
51+
path: src/sdf/ndtable/x86_64-linux
52+
- uses: actions/download-artifact@v4
53+
- uses: actions/download-artifact@v4
54+
with:
55+
name: x86_64-windows
56+
path: src/sdf/ndtable/x86_64-windows
57+
- uses: actions/download-artifact@v4
58+
with:
59+
name: x86_64-darwin
60+
path: src/sdf/ndtable/x86_64-darwin
61+
- uses: actions/download-artifact@v4
62+
with:
63+
name: aarch64-darwin
64+
path: src/sdf/ndtable/aarch64-darwin
5565
- run: uv build --wheel
5666
- uses: actions/upload-artifact@v4
5767
with:

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ build-backend = "hatchling.build"
2020
"src/sdf/ndtable/aarch64-darwin/libNDTable.dylib" = "sdf/ndtable/aarch64-darwin/libNDTable.dylib"
2121
"src/sdf/ndtable/x86_64-darwin/libNDTable.dylib" = "sdf/ndtable/x86_64-darwin/libNDTable.dylib"
2222
"src/sdf/ndtable/x86_64-linux/libNDTable.so" = "sdf/ndtable/x86_64-linux/libNDTable.so"
23-
"src/sdf/ndtable/x86-windows/NDTable.dll" = "sdf/ndtable/x86-windows/NDTable.dll"
2423
"src/sdf/ndtable/x86_64-windows/NDTable.dll" = "sdf/ndtable/x86_64-windows/NDTable.dll"
2524
"src/sdf/examples/IntegerNetwork1.mat" = "sdf/examples/IntegerNetwork1.mat"
2625
"src/sdf/examples/time_series.xlsx" = "sdf/examples/time_series.xlsx"

0 commit comments

Comments
 (0)