-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (35 loc) · 950 Bytes
/
gradle.yml
File metadata and controls
42 lines (35 loc) · 950 Bytes
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
name: Java CI with Gradle
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
env:
GRADLE_OPTS: >-
-Dorg.gradle.internal.http.connectionTimeout=60000
-Dorg.gradle.internal.http.socketTimeout=300000
steps:
- name: Checkout primary repo
uses: actions/checkout@v4
with:
repository: opensha/opensha
path: opensha
- name: Checkout dev repo
uses: actions/checkout@v4
with:
path: opensha-dev
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '17'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
working-directory: opensha-dev
- name: Build with Gradle
run: ./gradlew assemble
working-directory: opensha-dev