Skip to content

Commit

Permalink
version "2-alpha8"
Browse files Browse the repository at this point in the history
  • Loading branch information
daslu committed Sep 27, 2024
1 parent 0c7566d commit 29daad0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## [2-alpha8] - unreleased
## [2-alpha8] - 2024-09-27
- updated deps (metamorph.ml. scicloj.ml.tribuo)
- reverted Tribuo version to match scicloj.ml.tribuo
- added deps (scicloj-ml.smile, sklearn-clj)
Expand Down
21 changes: 10 additions & 11 deletions build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


(def lib 'org.scicloj/noj)
(def version "2-alpha7.1")
(def version "2-alpha8")
(def snapshot (str version "-SNAPSHOT"))
(def class-dir "target/classes")

Expand Down Expand Up @@ -61,7 +61,9 @@
:main-args ["-e" "(require '[gen-tests])(gen-tests/do-generate-tests)(System/exit 0)"]})
{:keys [exit]} (b/process cmds)]
(when-not (zero? exit) (throw (ex-info "Tests generation failed" {})))))

(def opts {})

(defn ci "Run the CI pipeline of tests (and build the JAR)." [opts]
(generate-tests nil)
(test (assoc opts :aliases [:dev :test]))
Expand All @@ -83,13 +85,10 @@


(defn models-integration-tests "Run integration tests." [opts]
(let [basis (b/create-basis { :aliases [:model-integration-tests ]})
cmds (b/java-command
{:basis basis
:main 'clojure.main
:main-args ["-m" "cognitect.test-runner" "-d" "model-integration-tests"]})]
(b/process cmds)
)opts)



(let [basis (b/create-basis { :aliases [:model-integration-tests ]})
cmds (b/java-command
{:basis basis
:main 'clojure.main
:main-args ["-m" "cognitect.test-runner" "-d" "model-integration-tests"]})]
(b/process cmds))
opts)

0 comments on commit 29daad0

Please sign in to comment.