-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
Reflect scripts as bb tasks #63
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,7 @@ | |
/.clj-kondo/.cache | ||
/deps | ||
/deps.build_artifacts.txt | ||
|
||
# Emacs | ||
*~ | ||
\#*\# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,37 @@ | ||
{:paths ["resources"] | ||
{:paths ["resources" "bb"] | ||
|
||
:tasks | ||
{:requires [[babashka.deps :as deps] | ||
[babashka.process :as p]] | ||
[babashka.fs :as fs] | ||
[babashka.process :as p] | ||
[clojure.string :as str]] | ||
|
||
compile tasks/compile-native | ||
|
||
bump-version (load-file "script/bump_version.clj") | ||
changelog (load-file "script/changelog.clj") | ||
gen-script {:doc "Regen `./deps[.clj|.bat]` from `src/borkdude/deps.clj`." | ||
:task (load-file "script/gen_script.clj")} | ||
|
||
test {:doc "Run all tests." | ||
:task | ||
(doseq [args '[[-M:test] [-M -m borkdude.deps -M:test]]] | ||
(println :testing... 'clojure args) | ||
(-> (deps/clojure args) | ||
p/check) | ||
(println))}}} | ||
babashka-test {:doc "Run tests with bb calling to bb deps lib." | ||
:task (let [bb (str \" (.get (.command (.info (java.lang.ProcessHandle/current)))) \")] | ||
(p/shell {:extra-env {"DEPS_CLJ_TEST_ENV" "babashka"}} | ||
bb "-cp" (str/join fs/path-separator ["src" "test" "resources"]) | ||
"-e" "(require '[clojure.test :as t] '[borkdude.deps-test])" | ||
"-e" "(let [{:keys [:fail :error]} (t/run-tests 'borkdude.deps-test)] (System/exit (+ fail error)))"))} | ||
|
||
exe-test {:doc "Run tests with deps exec calling to deps exec." | ||
:task (p/shell {:extra-env {"DEPS_CLJ_TEST_ENV" "native"}} | ||
(if (fs/windows?) "./deps.exe" "./deps") "-M:test")} | ||
|
||
jvm-clj-test {:doc "Run tests with clojure calling to clojure deps lib." | ||
:task (-> (deps/clojure '[-M:test]) | ||
p/check)} | ||
jvm-deps-test {:doc "Run tests with clojure deps lib calling to clojure deps lib." | ||
:task (-> (deps/clojure '[-M -m borkdude.deps -M:test]) | ||
p/check)} | ||
jvm-test {:doc "Run both jvm-clj-test and jvm-deps-test." | ||
:task (doseq [task '[jvm-clj-test jvm-deps-test]] | ||
(println :running... task) | ||
(run task) | ||
(println))}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
(ns tasks | ||
(:require [babashka.deps :as deps] | ||
[babashka.fs :as fs] | ||
[babashka.process :as p] | ||
[clojure.string :as str])) | ||
|
||
(defn compile-native | ||
"Compile library to standalone jar and a native executable program." | ||
[] | ||
(let [graalvm-home (or (System/getenv "GRAALVM_HOME") | ||
(throw (Exception. "Please set GRAALVM_HOME."))) | ||
java-home (str (fs/path graalvm-home "bin")) | ||
deps-clj-version (slurp "resources/DEPS_CLJ_VERSION")] | ||
(println "Building deps " deps-clj-version) | ||
(p/shell "lein" "deps.clj" "-Spath" "-Sdeps" "{:deps {borkdude/deps.clj {:mvn/version \"0.0.1\"}}}") | ||
(p/shell "lein with-profiles +native-image do clean, uberjar") | ||
(let [native-image (str (fs/path graalvm-home "bin" | ||
ikappaki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
(if (fs/windows?) "native-image.cmd" "native-image")))] | ||
borkdude marked this conversation as resolved.
Show resolved
Hide resolved
|
||
(println :graalvm-home graalvm-home :java-home java-home) | ||
(p/shell native-image "-jar" (format "target/deps.clj-%s-standalone.jar" deps-clj-version) | ||
"-H:Name=deps" | ||
"-H:+ReportExceptionStackTraces" | ||
"-J-Dclojure.spec.skip-macros=true" | ||
"-J-Dclojure.compiler.direct-linking=true" | ||
"-H:IncludeResources=DEPS_CLJ_VERSION" | ||
"--initialize-at-build-time" | ||
"-H:Log=registerResource:" | ||
"-H:EnableURLProtocols=http,https" | ||
"--enable-all-security-services" | ||
"--no-fallback" | ||
"--verbose" | ||
"--no-server" | ||
"-J-Xmx3g")) | ||
(p/shell "lein clean") | ||
(p/shell "./deps" "-Spath" "-Sdeps" "{:deps {borkdude/deps.clj {:mvn/version \"0.0.1\"}}}"))) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not a fan of making changes to CI builds if they are not necessary. The powershell command worked before. Switching to choco may slow down stuff or additional stuff may be installed which causes new unforeseen issues. The reason I'm saying this is that I've used brew on macOS CI and this was very very slow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, I forgot to mention that I did that because the compile script only looks in PATH to locate
lein
, and not in the CWD as per the above installation does. I had a few futile attempts trying to add it in the appveyor PATH and in the end settled at using choco (courtesy ofgrep.app
).Understood. I've reverted the change and updated the
compile
task to look at CWD for lein. There is an inherent difficulty trying to locate windows executable programs/scripts outside of PATH without mentioning the extension. I might open ababashka.fs
to discuss the problem.Thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for explaining!