Skip to content

Commit f55cdd4

Browse files
committed
Initial commit, dev build 1.
0 parents  commit f55cdd4

File tree

135 files changed

+8081
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+8081
-0
lines changed

.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# Linux start script should use lf
5+
/gradlew text eol=lf
6+
7+
# These are Windows script files and should use crlf
8+
*.bat text eol=crlf
9+

.github/workflows/build.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Automatically build the project and run any configured tests for every push
2+
# and submitted pull request. This can help catch issues that only occur on
3+
# certain platforms or Java versions, and provides a first line of defence
4+
# against bad commits.
5+
6+
name: build
7+
on: [pull_request, push]
8+
9+
jobs:
10+
build:
11+
strategy:
12+
matrix:
13+
java: [21]
14+
os: [ubuntu-22.04, windows-2022]
15+
runs-on: ${{ matrix.os }}
16+
steps:
17+
- name: checkout repository
18+
uses: actions/checkout@v4
19+
- name: validate gradle wrapper
20+
uses: gradle/wrapper-validation-action@v2
21+
- name: setup jdk ${{ matrix.java }}
22+
uses: actions/setup-java@v4
23+
with:
24+
java-version: ${{ matrix.java }}
25+
distribution: 'microsoft'
26+
- name: make gradle wrapper executable
27+
if: ${{ runner.os != 'Windows' }}
28+
run: chmod +x ./gradlew
29+
- name: build
30+
run: ./gradlew build
31+
- name: capture build artifacts
32+
if: ${{ runner.os == 'Linux' && matrix.java == '21' }}
33+
uses: actions/upload-artifact@v4
34+
with:
35+
name: Artifacts
36+
path: build/libs/

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# gradle
2+
3+
.gradle/
4+
build/
5+
out/
6+
classes/
7+
8+
# eclipse
9+
10+
*.launch
11+
12+
# idea
13+
14+
.idea/
15+
*.iml
16+
*.ipr
17+
*.iws
18+
*.salive
19+
20+
# vscode
21+
22+
.settings/
23+
.vscode/
24+
bin/
25+
.classpath
26+
.project
27+
28+
# macos
29+
30+
*.DS_Store
31+
32+
# fabric
33+
34+
run/
35+
36+
# java
37+
38+
hs_err_*.log
39+
replay_*.log
40+
*.hprof
41+
*.jfr

LICENSE

Lines changed: 693 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)