forked from RelativityMC/C2ME-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (38 loc) · 1023 Bytes
/
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
44
45
46
47
48
name: C2ME Build Script
on:
push: {}
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 17
java-package: jdk
- uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
./.gradle/loom-cache
key: ${{ runner.os }}-gradle4-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle4-
- name: Build C2ME
run: |
./gradlew clean build --stacktrace
# - name: Run FOSSA
# uses: fossa-contrib/fossa-action@v1
# with:
# fossa-api-key: 46711dc8ef0a8d57d06010c8148bb6ea
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: c2me-artifact
path: 'build/libs/*.jar'