Skip to content

Commit dde0546

Browse files
committed
Active GHA
1 parent 47d7571 commit dde0546

File tree

2 files changed

+27
-15
lines changed

2 files changed

+27
-15
lines changed

.github/actions/ci.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)