Skip to content

Commit

Permalink
correct CI workflow (#318)
Browse files Browse the repository at this point in the history
* correct workflow

* use RLST from git

* use green-kernels from git

* "
  • Loading branch information
mscroggs authored Dec 17, 2024
1 parent bf92dd5 commit 77578ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-weekly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Build rust library
run: cargo build --features "${{matrix.f_mpi}}${{matrix.f_strict}}"
- name: Build rust library in release mode
run: cargo build --features --release "${{matrix.f_mpi}}${{matrix.f_strict}}"
run: cargo build --release --features "${{matrix.f_mpi}}${{matrix.f_strict}}"

- name: Run unit tests
run: cargo test --features "${{matrix.f_mpi}}${{matrix.f_strict}}"
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ num = "0.4"
ndelement = { git="https://github.com/bempp/ndelement.git", default-features = false }
ndgrid = { git="https://github.com/bempp/ndgrid.git", default-features = false }
rayon = "1.9"
rlst = { version = "0.2.1", default-features = false }
green-kernels = { version = "0.2.2", default-features = false }
rlst = { git = "https://github.com/linalg-rs/rlst.git", default-features = false }
green-kernels = { git = "https://github.com/bempp/green-kernels.git", default-features = false }
c-api-tools = { version = "0.1.0" }

[dev-dependencies]
Expand Down

0 comments on commit 77578ae

Please sign in to comment.