forked from WorldStarHipHopX/playforia
-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade to Java 21, fix Docker image, add server integration test #112
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
268fa42
Server: Sort TrackSets when they are created
StenAL 5d8ab60
Server: Add stop method
StenAL eb75473
Server: Add single player network flow test
StenAL a8dd482
Build: Upgrade to Java 21
StenAL 411acb0
Build: Fix Docker image
StenAL ecb22cf
Shared: Remove dependency on softsmithy-lib-core
StenAL 8b22d01
Build: Do not create dependency reduced POMs for shaded JARs
StenAL 3f9354a
Build: Add metadata required by Launch4j to project POM
StenAL 396f275
Server: Remove null argument passed to varargs parameter in removePlayer
StenAL b9b705e
Build: Upgrade dependencies (except Netty)
StenAL File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,10 @@ jobs: | |
uses: metcalfc/[email protected] | ||
with: | ||
myToken: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 17 | ||
java-version: 21 | ||
distribution: 'temurin' | ||
# Step that caches and restores maven dependencies | ||
- name: Cache maven dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# | ||
# Build stage | ||
# | ||
FROM maven:3.6.0-jdk-8-slim AS build | ||
FROM maven:3.9.7-eclipse-temurin-21 AS build | ||
COPY . /home/app/ | ||
RUN mvn -f /home/app/pom.xml -pl server -am clean package | ||
|
||
# | ||
# Package stage | ||
# | ||
FROM openjdk:8-alpine | ||
FROM eclipse-temurin:21-alpine | ||
COPY --from=build /home/app/server/target/server-*.jar /home/minigolf/server.jar | ||
COPY tracks/ /home/minigolf/tracks/ | ||
EXPOSE 4242 | ||
WORKDIR /home/minigolf | ||
ENTRYPOINT ["java","-jar","server.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ The Java Applet-based Minigolf Client was one of the most popular multiplayer ga | |
|
||
### Prerequisites | ||
- Clone this repo: `git clone [email protected]:PhilippvK/playforia-minigolf.git` | ||
- Install Java Development Kit 17 (https://adoptium.net/en-GB/temurin/releases/) | ||
- Install Java Development Kit 21 (https://adoptium.net/en-GB/temurin/releases/) | ||
- Install Apache `maven` for building: https://maven.apache.org/install.html | ||
- *Optional:* Install IntelliJ IDEA Java IDE (https://www.jetbrains.com/idea/download/) and import this repository as project | ||
|
||
|
@@ -62,7 +62,13 @@ java -jar client.jar -server 192.168.1.7 -lang en_US # Replace IP with the one o | |
|
||
#### Running Minigolf Server in Docker Container | ||
|
||
We provide an experimental Dockerfile for easy hosting of the server application. You can either build the image by yourself or download the pre-build images from [quay.io](https://quay.io/repository/philippvk/minigolf) via `docker pull quay.io/philippvk/minigolf:latest`. | ||
We provide an experimental Dockerfile for easy hosting of the server application. | ||
You can either build and run the image: | ||
```sh | ||
docker build -t pfmg . | ||
docker run pfmg | ||
``` | ||
or download the pre-built images from [quay.io](https://quay.io/repository/philippvk/minigolf) via `docker pull quay.io/philippvk/minigolf:latest`. | ||
|
||
Running the Editor is quite straightforward as it can be started like expected: `java -jar editor.jar` | ||
|
||
|
@@ -83,7 +89,7 @@ Client CLI options: | |
## Compatibility | ||
|
||
Tested: | ||
- Ubuntu 22.04 with Java version `17.0.6` | ||
- Ubuntu 22.04 with Java version `21.0.3` | ||
- Windows 10/11 | ||
|
||
## Problems | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess I will have to add the access token as a repo secret?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this pushing to docker.io or https://quay.io/repository/philippvk/minigolf?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only if you want CI to push the image to a Docker repo. In it's current form, CI will just build the image to make sure it doesn't break unexpectedly. It doesn't publish the image anywhere.