forked from oltpbenchmark/oltpbench
-
Notifications
You must be signed in to change notification settings - Fork 3
46 lines (43 loc) · 921 Bytes
/
main.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
name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
ubuntu:
name: Ubuntu (JDK ${{ matrix.java }})
runs-on: ubuntu-latest
strategy:
matrix:
java: [11,17]
steps:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: |
chmod +x ./gradlew
./gradlew --no-daemon build zipAll
windows:
name: Windows (JDK ${{ matrix.java }})
runs-on: windows-latest
strategy:
matrix:
java: [11,17]
steps:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: 11
- name: Checkout
uses: actions/checkout@v2
- name: Build
shell: cmd
run: |
./gradlew --no-daemon build zipAll