Skip to content

Commit

Permalink
2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaspazza committed Aug 23, 2024
1 parent 2f7b039 commit 4a01134
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 23 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/commit_validation.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/validation_delaguardo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Commit validation - Delaguardo flavor
on: [push]
jobs:
clojure:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest] # , windows-latest There is a path issue
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '22'

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.4.1474 # Clojure CLI based on tools.deps
bb: 1.3.191 # Babashka
clj-kondo: 2024.08.01 # Clj-kondo
cljfmt: 0.10.2 # cljfmt
zprint: 1.2.9 # zprint
- name: Cache clojure dependencies
uses: actions/cache@v4
with:
path: /home/runner/.m2/repository
key: cljdeps-${{ hashFiles('deps.edn', 'bb.edn') }}
restore-keys: cljdeps-
- name: Test
run: bb heph-task gha

11 changes: 11 additions & 0 deletions .github/workflows/validation_docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Commit validation - docker flavor
run-name: Test ${{ github.event.head_commit.message }}
on: [push]
jobs:
run-bb:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Base image
uses: docker://hephaistox/gha-image:1.0.1
2 changes: 1 addition & 1 deletion bb.edn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;; The file is updated automatically
{:deps {org.clojars.hephaistox/automaton-build #:mvn{:version "2.0.2"}}
{:deps {org.clojars.hephaistox/automaton-build #:mvn{:version "3.0.0"}}
:paths []
:tasks
{:requires
Expand Down
8 changes: 4 additions & 4 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
{:antq {:deps {com.github.liquidz/antq {:mvn/version "2.9.1217"}}
:main-opts ["-m" "antq.core"]}
:bb-deps {:extra-deps {org.clojars.hephaistox/automaton-build
#:mvn{:version "2.0.2"}}}
#:mvn{:version "3.0.0"}}}
:build {:extra-deps {org.clojars.hephaistox/automaton-build
#:mvn{:version "2.0.2"}}}
#:mvn{:version "3.0.0"}}}
:cljs-deps {:extra-deps {binaryage/devtools #:mvn{:version "1.0.7"}
criterium/criterium {:mvn/version "0.4.6"}
kixi/stats {:mvn/version "0.5.5"}
Expand All @@ -23,7 +23,7 @@
:jvm-opts ["-Dheph-conf=env/test/config.edn,env/test/config.edn"]}
:env-development-repl
{:extra-deps {org.clojars.hephaistox/automaton-core #:mvn{:version
"1.2.9"}}
"1.3.0"}}
:extra-paths ["env/development/resources"
"env/development/src/clj"
"env/development/src/cljc"]
Expand All @@ -44,7 +44,7 @@
"test/cljc"]}}
:deps {criterium/criterium {:mvn/version "0.4.6"}
kixi/stats {:mvn/version "0.5.5"}
org.clojars.hephaistox/automaton-core #:mvn{:version "1.2.9"}
org.clojars.hephaistox/automaton-core #:mvn{:version "1.3.0"}
org.clojure/clojure #:mvn{:version "1.11.4"}
thedavidmeister/xoroshiro128 #:mvn{:version "1.1.3"}}
:paths ["src/clj" "src/cljc" "resources" "src/cljs"]}
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<packaging>jar</packaging>
<groupId>org.clojars.hephaistox</groupId>
<artifactId>automaton-optimization</artifactId>
<version>2.0.7</version>
<version>2.1.0</version>
<name>automaton-optimization</name>
<dependencies>
<dependency>
Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>org.clojars.hephaistox</groupId>
<artifactId>automaton-core</artifactId>
<version>1.2.9</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>kixi</groupId>
Expand Down
2 changes: 1 addition & 1 deletion version.edn
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
;; Last generated version, note a failed push consume a number
{:version "2.0.7"}
{:version "2.1.0"}

0 comments on commit 4a01134

Please sign in to comment.