-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* clj-service move-out * docs removed * goldly vwebly2 compiling * compiling with reval-sci added * reval-sci compiling * goldly-test compiling * demo renamed * sci compile working * ci * readme --------- Co-authored-by: awb99 <[email protected]>
- Loading branch information
Showing
162 changed files
with
1,284 additions
and
2,007 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,8 +31,6 @@ jobs: | |
clj-kondo: 2022.05.31 # Clj-kondo | ||
cljfmt: 0.10.2 # cljfmt | ||
cljstyle: 0.15.0 # cljstyle | ||
- name: bb ci-check | ||
run: bb ci-check | ||
- name: bb ci-goldly-deploy | ||
env: | ||
CLOJARS_USERNAME: ${{ secrets.ReleaseUsername }} | ||
|
@@ -41,22 +39,5 @@ jobs: | |
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI/CD" | ||
bb ci-goldly-deploy | ||
- name: bb ci-goldly-docs-deploy | ||
if: success() | ||
# if: github.event_name == 'push' | ||
env: | ||
CLOJARS_USERNAME: ${{ secrets.ReleaseUsername }} | ||
CLOJARS_PASSWORD: ${{ secrets.ReleasePassword }} | ||
CODECOV_TOKEN: ${{ secrets.CodecovToken }} | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI/CD" | ||
bb ci-goldly-docs-deploy | ||
# bash <(curl -s https://codecov.io/bash) | ||
# lein with-profile +relay-jetty cloverage | ||
# bash <(curl -s https://codecov.io/bash) -f target/coverage/codecov.json | ||
# | ||
# Could not transfer metadata foo:bar/maven-metadata.xml from/to releases (https://clojars.org/repo): Read timed out | ||
# Default 10000 not enough for us | ||
# export LEIN_JVM_OPTS="-Dmaven.wagon.rto=90000" | ||
clojure -T:build jar | ||
clojure -T:build deploy |
This file was deleted.
Oops, something went wrong.
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
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,19 +1,14 @@ | ||
(ns build | ||
(:require | ||
[babashka.fs :as fs] | ||
[clojure.tools.build.api :as b] | ||
[org.corfield.build :as bb] ; https://github.com/seancorfield/build-clj | ||
[modular.date :refer [now-str]])) | ||
)) | ||
|
||
(def lib 'org.pinkgorilla/goldly) | ||
(def version (format "0.4.%s" (b/git-count-revs nil))) | ||
(def version (format "0.7.%s" (b/git-count-revs nil))) | ||
|
||
(defn jar "build the JAR" [opts] | ||
(println "Building the JAR") | ||
(spit (doto (fs/file "resources/META-INF/pink-gorilla/goldly/meta.edn") | ||
(-> fs/parent fs/create-dirs)) {:module-name "goldly" | ||
:version version | ||
:generated (now-str)}) | ||
(-> opts | ||
(assoc :lib lib | ||
:version version | ||
|
@@ -28,19 +23,6 @@ | |
:version version) | ||
(bb/deploy))) | ||
|
||
#_(def pom-template | ||
[[:licenses | ||
[:license | ||
[:name "Eclipse Public License"] | ||
[:url "https://www.eclipse.org/legal/epl-v10.html"]]] | ||
[:developers | ||
[:developer | ||
[:name "pink-gorilla"]]] | ||
[:scm | ||
[:url "https://github.com/pink-gorilla/goldly"] | ||
[:connection "scm:git:git://github.com/pink-gorilla/goldly.git"] | ||
[:developerConnection "scm:git:ssh://[email protected]/pink-gorilla/goldly.git"]]]) | ||
|
||
;If you are working in a monorepo, such as the [Polylith architecture](https://polylith.gitbook.io/), and need | ||
;to build library JAR files from projects that rely on `:local/root` dependencies to specify other source | ||
;components, you will generally want to pass `:transitive true` to the `jar` task. | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.