Skip to content

Commit

Permalink
disable rust because of bitrot
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Jan 15, 2025
1 parent 483dd63 commit 7bc5c4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bb.edn
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@

libsci:compile-all {:doc "Compile libsci and the example C, C++ and rust programs to `libsci/target/`."
:depends [libsci:compile libsci:compile-c
libsci:compile-cpp libsci:compile-rust]}
libsci:compile-cpp #_libsci:compile-rust]}

libsci:test libsci-tasks/test}}
2 changes: 1 addition & 1 deletion libsci/bb/libsci_tasks.clj
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
(let [{:keys [out]} (p/shell shell-opts "libsci/target/from_cpp \"(+ 1 2)\"")]
(is (= (str/trim out) "3"))))

(testing "rust program"
#_(testing "rust program"
(let [{:keys [out]} (p/shell shell-opts "libsci/target/from-rust \"(+ 1 2)\"")]
(is (= (str/trim out) "3"))))))

Expand Down

0 comments on commit 7bc5c4f

Please sign in to comment.