Skip to content

Commit d33137a

Browse files
committed
Merge branch 'main' into pos_and_eq_deletes
2 parents d1ec371 + cd60057 commit d33137a

File tree

16 files changed

+1121
-775
lines changed

16 files changed

+1121
-775
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,18 @@ jobs:
8989
- macos-latest
9090
- windows-latest
9191
steps:
92+
- name: Maximize build space (Ubuntu)
93+
if: matrix.os == 'ubuntu-latest'
94+
uses: easimon/maximize-build-space@master
95+
with:
96+
remove-dotnet: "true"
97+
remove-android: "true"
98+
remove-haskell: "true"
99+
remove-codeql: "true"
100+
remove-docker-images: "true"
101+
root-reserve-mb: 10240
102+
temp-reserve-mb: 10240
103+
92104
- uses: actions/checkout@v5
93105

94106
- name: Setup Rust toolchain

.github/workflows/release_python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
command: sdist
108108
args: -o dist
109109
- name: Upload sdist
110-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v5
111111
with:
112112
name: wheels-sdist
113113
path: bindings/python/dist
@@ -159,7 +159,7 @@ jobs:
159159
command: build
160160
args: --release -o dist
161161
- name: Upload wheels
162-
uses: actions/upload-artifact@v4
162+
uses: actions/upload-artifact@v5
163163
with:
164164
name: wheels-${{ matrix.os }}-${{ matrix.target }}
165165
path: bindings/python/dist
@@ -178,7 +178,7 @@ jobs:
178178

179179
steps:
180180
- name: Download all the dists
181-
uses: actions/download-artifact@v5
181+
uses: actions/download-artifact@v6
182182
with:
183183
pattern: wheels-*
184184
merge-multiple: true

.github/workflows/release_python_nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
args: -o dist
5757

5858
- name: Upload sdist
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: wheels-sdist
6262
path: bindings/python/dist
@@ -102,7 +102,7 @@ jobs:
102102
args: --release -o dist
103103

104104
- name: Upload wheels
105-
uses: actions/upload-artifact@v4
105+
uses: actions/upload-artifact@v5
106106
with:
107107
name: wheels-${{ matrix.os }}-${{ matrix.target }}
108108
path: bindings/python/dist
@@ -120,7 +120,7 @@ jobs:
120120

121121
steps:
122122
- name: Download all the dists
123-
uses: actions/download-artifact@v5
123+
uses: actions/download-artifact@v6
124124
with:
125125
pattern: wheels-*
126126
merge-multiple: true

0 commit comments

Comments
 (0)