Skip to content
GitLab
Explore
bixilon.de
Sign in
Primary navigation
Search or go to…
Project
Minosoft
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Moritz Zwerger
Minosoft
Merge requests
!57
Draft: Gradle Build System
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: Gradle Build System
isXander/minosoft:master
into
master
Overview
1
Commits
4
Pipelines
7
Changes
14
Closed
Xander Smith
requested to merge
isXander/minosoft:master
into
master
2 years ago
Overview
1
Commits
4
Pipelines
7
Changes
14
Expand
Switch from Maven -> Gradle (Kotlin DSL)
Still got to figure out gitlab CI.
0
0
Merge request reports
Compare
master
version 3
64a11c88
2 years ago
version 2
c6dad38e
2 years ago
version 1
1ecdcfb5
2 years ago
master (base)
and
latest version
latest version
e704fd12
4 commits,
2 years ago
version 3
64a11c88
3 commits,
2 years ago
version 2
c6dad38e
2 commits,
2 years ago
version 1
1ecdcfb5
1 commit,
2 years ago
14 files
+
484
−
569
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
.github/workflows/gradle.yml
0 → 100644
+
56
−
0
Options
name
:
Gradle CI
on
:
push
:
branches
:
-
'
master'
paths-ignore
:
-
'
ReadMe.md'
-
'
LICENSE.md'
-
'
.gitignore'
-
'
.editorconfig'
-
'
Credits.md'
-
'
Contributing.md'
pull_request
:
branches
:
-
'
master'
paths-ignore
:
-
'
ReadMe.md'
-
'
LICENSE.md'
-
'
.gitignore'
-
'
.editorconfig'
-
'
Credits.md'
-
'
Contributing.md'
workflow_dispatch
:
jobs
:
build
:
strategy
:
matrix
:
os
:
[
'
ubuntu-latest'
,
'
windows-latest'
]
runs-on
:
${{ matrix.os }}
name
:
Build with gradle
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up JDK
uses
:
actions/setup-java@v2.3.1
with
:
java-version
:
11
distribution
:
temurin
-
uses
:
actions/cache@v2
with
:
path
:
|
~/.gradle/caches
~/.gradle/wrapper
key
:
${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys
:
|
${{ runner.os }}-gradle-
-
name
:
Grant execute permission for gradlew
run
:
chmod +x gradlew
-
name
:
Build with Gradle
run
:
./gradlew build --no-daemon
-
uses
:
actions/upload-artifact@v3
with
:
name
:
'
minosoft-${{
contains(matrix.os,
"windows")
?
"win64"
:
"linux"
}}'
path
:
target/Minosoft-*.jar
Loading