-
Notifications
You must be signed in to change notification settings - Fork 17
47 lines (32 loc) · 1.35 KB
/
gradle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Java CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 8
- name: build and test cadc-jsqlparser-compat
run: cd cadc-jsqlparser-compat && ../gradlew --info clean build javadoc install
- name: build and test cadc-tap
run: cd cadc-tap && ../gradlew --info clean build javadoc install
- name: build and test cadc-tap-schema
run: cd cadc-tap-schema && ../gradlew --info clean build javadoc install
- name: build and test cadc-tap-server
run: cd cadc-tap-server && ../gradlew --info clean build javadoc install
- name: build and test cadc-adql
run: cd cadc-adql && ../gradlew --info clean build javadoc install
- name: build and test cadc-tap-server-pg
run: cd cadc-tap-server-pg && ../gradlew --info clean build javadoc install
- name: build and test cadc-tap-server-oracle
run: cd cadc-adql && ../gradlew --info clean build javadoc install
- name: build and test cadc-test-tap
run: cd cadc-test-tap && ../gradlew --info clean build javadoc install
- name: build example-tap
run: cd example-tap && ../gradlew --info clean build