File tree Expand file tree Collapse file tree 2 files changed +27
-15
lines changed Expand file tree Collapse file tree 2 files changed +27
-15
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ tags :
9
+
10
+ jobs :
11
+ CI :
12
+ runs-on : ubuntu-latest
13
+ timeout-minutes : 30
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - run : |
17
+ mkdir ci-dependencies
18
+ cd ci-dependencies
19
+ curl -O https://skyapm.github.io/ci-assist/jars/ojdbc14-10.2.0.4.0.jar
20
+ mvn install:install-file -Dfile=ojdbc14-10.2.0.4.0.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar
21
+ curl -O https://skyapm.github.io/ci-assist/jars/resin-4.0.41.jar
22
+ mvn install:install-file -Dfile=resin-4.0.41.jar -DgroupId=com.caucho -DartifactId=resin -Dversion=4.0.41 -Dpackaging=jar
23
+ cd ..
24
+
25
+ - run : mvn clean install
26
+
27
+
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments