Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove aligned block format and do all calculations in the standard raster coefficient format #59

Merged
merged 17 commits into from
Apr 10, 2024
Merged
5 changes: 0 additions & 5 deletions .cargo/config.toml

This file was deleted.

21 changes: 16 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,33 @@ on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --locked --verbose
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: wasm32-wasi,aarch64-unknown-linux-musl,x86_64-pc-windows-msvc,x86_64-unknown-linux-gnu
components: rustfmt,clippy

- name: Build default target
run: cargo build --locked
- name: Build wasm32-wasi
run: cargo build --locked --target wasm32-wasi --lib
- name: Build aarch64-unknown-linux-musl
run: cargo build --locked --target aarch64-unknown-linux-musl --lib
- name: Build x86_64-pc-windows-msvc
run: cargo build --locked --target x86_64-pc-windows-msvc --lib
- name: Run tests
run: cargo test --locked --verbose
run: cargo test --locked
- name: Check formatting
run: cargo fmt --check

127 changes: 66 additions & 61 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading