Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
updates
  • Loading branch information
jblindsay committed May 17, 2024
1 parent 5a82f51 commit 65aaaf0
Show file tree
Hide file tree
Showing 78 changed files with 1,822 additions and 588 deletions.
Binary file modified .DS_Store
Binary file not shown.
46 changes: 46 additions & 0 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build WhiteboxTools

on:
workflow_dispatch:
# push:
# branches:
# - main # Adjust to match your primary branch name

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-20.04, windows-latest, macos-12, macOS-latest]
python-version: ['3.8']

steps:
- name: Check out code
uses: actions/checkout@v4

# # Install Rust and Cargo
# - name: Install Rust
# uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true

# Install Rust and Cargo
- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Run build script
run: python build.py

- name: Upload WBT
uses: actions/upload-artifact@v4
with:
name: wbt-${{ matrix.os }}-${{ matrix.python-version }}
path: WBT
Loading

0 comments on commit 65aaaf0

Please sign in to comment.