-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 1 KB
/
build.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
# This workflow builds the WRES distros
name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
Build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
# Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
run: echo "step 1"
# Run and build using gradle
# Disable aggregateJavaDocs
- name: Run build
run: echo "step 2"
# Confirm the test code inside wres-external-services-tests zip compiles
- name: Compile external-services-tests
run: echo "step 3"
# Create the system tests zip
- name: Create systests zip
run: echo "step 4"
- name: Creating md5
run: echo "step 5"