File tree Expand file tree Collapse file tree 4 files changed +36
-3
lines changed Expand file tree Collapse file tree 4 files changed +36
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Release on demand
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ releaseVersion :
7
+ description : " Version to release"
8
+ required : true
9
+ snapshotVersion :
10
+ description : " Snapshot version after release"
11
+ required : true
12
+
13
+ jobs :
14
+ call-release :
15
+ uses : clojure/build.ci/.github/workflows/release.yml@master
16
+ with :
17
+ releaseVersion : ${{ github.event.inputs.releaseVersion }}
18
+ snapshotVersion : ${{ github.event.inputs.snapshotVersion }}
19
+ secrets : inherit
Original file line number Diff line number Diff line change
1
+ name : Snapshot on demand
2
+
3
+ on : [workflow_dispatch]
4
+
5
+ jobs :
6
+ call-snapshot :
7
+ uses : clojure/build.ci/.github/workflows/snapshot.yml@master
8
+ secrets : inherit
Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ call-test :
7
+ uses : clojure/build.ci/.github/workflows/test.yml@master
Original file line number Diff line number Diff line change @@ -113,8 +113,7 @@ Developer Information
113
113
114
114
* [ GitHub project] ( https://github.com/clojure/java.jdbc )
115
115
* [ Bug Tracker] ( https://clojure.atlassian.net/browse/JDBC )
116
- * [ Continuous Integration] ( https://build.clojure.org/job/java.jdbc/ )
117
- * [ Compatibility Test Matrix] ( https://build.clojure.org/job/java.jdbc-test-matrix/ )
116
+ * [ Continuous Integration] ( https://github.com/clojure/java.jdbc/actions/workflows/test.yml )
118
117
119
118
* Testing:
120
119
* Currently by default tests run only against Derby and HSQLDB, the in-process databases.
@@ -506,7 +505,7 @@ Change Log
506
505
Copyright and License
507
506
========================================
508
507
509
- Copyright (c) Sean Corfield, Stephen Gilardi, 2011-2014 . All rights reserved. The use and
508
+ Copyright (c) Sean Corfield, Stephen Gilardi, 2011-2023 . All rights reserved. The use and
510
509
distribution terms for this software are covered by the Eclipse Public
511
510
License 1.0 (https://opensource.org/licenses/eclipse-1.0.php ) which can
512
511
be found in the file epl-v10.html at the root of this distribution.
You can’t perform that action at this time.
0 commit comments