Skip to content

Commit db0fe55

Browse files
committed
ci: update rust installation step
1 parent 674429a commit db0fe55

File tree

1 file changed

+3
-27
lines changed

1 file changed

+3
-27
lines changed

.github/workflows/test-bdk-ffi-latest.yaml

Lines changed: 3 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
./target
5252
key: ${{ runner.os }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
5353

54-
- name: "Install Rust 1.84.1"
55-
uses: actions-rs/toolchain@v1
54+
- name: "Setup Rust"
55+
uses: actions-rust-lang/setup-rust-toolchain@v1.15.0
5656
with:
57-
toolchain: 1.84.1
57+
toolchain: 1.85.1
5858

5959
- name: "Generate bdk.py and binaries"
6060
run: bash ./scripts/generate-linux.sh
@@ -71,12 +71,6 @@ jobs:
7171
- name: "Run tests"
7272
run: ${PYBIN}/python -m unittest discover --start "./tests/" --pattern "test_offline_*.py" --verbose
7373

74-
- name: "Upload artifact test"
75-
uses: actions/upload-artifact@v4
76-
with:
77-
name: bdkpython-manylinux_2_28_x86_64-${{ matrix.python }}
78-
path: /home/runner/work/bdk-python/bdk-python/dist/*.whl
79-
8074
test-bdk-ffi-latest-macos-arm64-wheels:
8175
name: "Build and run unittest on macOS arm64 wheels against the latest commit on bdk-ffi"
8276
runs-on: macos-14
@@ -134,12 +128,6 @@ jobs:
134128
- name: "Run tests"
135129
run: python3 -m unittest discover --start "./tests/" --pattern "test_offline_*.py" --verbose
136130

137-
- name: "Upload artifact test"
138-
uses: actions/upload-artifact@v4
139-
with:
140-
name: bdkpython-macos-arm64-${{ matrix.python }}
141-
path: /Users/runner/work/bdk-python/bdk-python/dist/*.whl
142-
143131
test-bdk-ffi-latest-macos-x86_64-wheels:
144132
name: "Build and run unittest on macOS x86_64 wheels against the latest commit on bdk-ffi"
145133
runs-on: macos-15-intel
@@ -194,12 +182,6 @@ jobs:
194182
- name: "Run tests"
195183
run: python3 -m unittest discover --start "./tests/" --pattern "test_offline_*.py" --verbose
196184

197-
- name: "Upload artifact test"
198-
uses: actions/upload-artifact@v4
199-
with:
200-
name: bdkpython-macos-x86_64-${{ matrix.python }}
201-
path: /Users/runner/work/bdk-python/bdk-python/dist/*.whl
202-
203185
test-bdk-ffi-latest-windows-wheels:
204186
name: "Build and run unittest on Windows wheels against the latest commit on bdk-ffi"
205187
runs-on: windows-2022
@@ -249,12 +231,6 @@ jobs:
249231
- name: "Build wheel"
250232
run: python -m build --wheel --verbose
251233

252-
- name: "Upload artifact test"
253-
uses: actions/upload-artifact@v4
254-
with:
255-
name: bdkpython-windows-${{ matrix.python }}
256-
path: D:\a\bdk-python\bdk-python\dist\*.whl
257-
258234
- name: "Install dependencies"
259235
run: Get-ChildItem 'D:\a\bdk-python\bdk-python\dist\*.whl' | ForEach-Object {pip install $_.FullName}
260236
shell: powershell

0 commit comments

Comments
 (0)