Skip to content

Commit 65aaaf0

Browse files
committed
updates
updates
1 parent 5a82f51 commit 65aaaf0

File tree

78 files changed

+1822
-588
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1822
-588
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.github/workflows/build-wheels.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Build WhiteboxTools
2+
3+
on:
4+
workflow_dispatch:
5+
# push:
6+
# branches:
7+
# - main # Adjust to match your primary branch name
8+
9+
jobs:
10+
build:
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
# os: [ubuntu-latest, windows-latest, macOS-latest]
15+
os: [ubuntu-20.04, windows-latest, macos-12, macOS-latest]
16+
python-version: ['3.8']
17+
18+
steps:
19+
- name: Check out code
20+
uses: actions/checkout@v4
21+
22+
# # Install Rust and Cargo
23+
# - name: Install Rust
24+
# uses: actions-rs/toolchain@v1
25+
# with:
26+
# profile: minimal
27+
# toolchain: stable
28+
# override: true
29+
30+
# Install Rust and Cargo
31+
- name: Install Rust
32+
uses: dtolnay/rust-toolchain@stable
33+
34+
- name: Set up Python ${{ matrix.python-version }}
35+
uses: actions/setup-python@v5
36+
with:
37+
python-version: ${{ matrix.python-version }}
38+
39+
- name: Run build script
40+
run: python build.py
41+
42+
- name: Upload WBT
43+
uses: actions/upload-artifact@v4
44+
with:
45+
name: wbt-${{ matrix.os }}-${{ matrix.python-version }}
46+
path: WBT

0 commit comments

Comments
 (0)