Compare commits

..

14 Commits

Author SHA1 Message Date
Geoff Bourne
cf470092da Auto-merging via docker-versions-create 2021-04-11 10:10:24 -05:00
Jawa_Juice
70ea32e89d Add option for Flare flags (#827) 2021-04-09 12:25:51 -05:00
Geoff Bourne
f6adaf7432 Merged latest from master 2021-04-08 19:18:53 -05:00
Geoff Bourne
2a2125cded Merging latest from master 2021-04-01 16:38:01 -05:00
Geoff Bourne
192f004913 Merge branch 'master' into openj9-11 2021-03-06 16:27:43 -06:00
Geoff Bourne
5920d41fe6 Shifted PATH-fix earlier in startup 2021-03-06 16:06:19 -06:00
Geoff Bourne
9892df4f48 Auto-merging via docker-versions-create 2021-02-27 20:54:28 -06:00
Geoff Bourne
6fd01d662f Merge branch 'master' into openj9-11 2021-02-10 14:57:02 -06:00
Geoff Bourne
2fc56067fa Auto-merging via docker-versions-create 2021-02-10 14:03:07 -06:00
Geoff Bourne
01fb2e1947 Auto-merging via docker-versions-create
CONFLICT (content): Merge conflict in Dockerfile
2021-02-07 18:18:18 -06:00
Geoff Bourne
34edb10571 Auto-merging docker-versions-create.sh
CONFLICT (content): Merge conflict in Dockerfile
CONFLICT (add/add): Merge conflict in .github/workflows/build-multiarch.yml
2021-02-07 09:12:30 -06:00
Geoff Bourne
1de85d667f Auto-merging via docker-versions-create 2021-01-29 21:04:06 -06:00
Geoff Bourne
97cb1a8c87 Auto-merging via docker-versions-create 2021-01-12 17:26:05 -06:00
Geoff Bourne
bd8c630f45 ci: Added openj9 JDK11 branch 2021-01-12 17:15:18 -06:00
4 changed files with 15 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
FROM adoptopenjdk/openjdk8-openj9:alpine
FROM adoptopenjdk/openjdk11-openj9:alpine
LABEL org.opencontainers.image.authors="Geoff Bourne <itzgeoff@gmail.com>"

View File

@@ -327,6 +327,10 @@ An [Airplane](https://github.com/TECHNOVE/Airplane) server, which is a fork of T
> **NOTE** only Java 8 and 11 are supported
Extra variables:
- `FORCE_REDOWNLOAD=false` : set to true to force the located server jar to be re-downloaded
- `USE_FLARE_FLAGS=false` : set to true to add appropriate flags for the [Flare](https://blog.airplane.gg/flare) profiler
## Running a Purpur server
A [Purpur](https://purpur.pl3x.net/) server, which is "a fork of Paper, Tuinity, Airplane with the goal of providing new and interesting configuration options".
@@ -338,6 +342,7 @@ A [Purpur](https://purpur.pl3x.net/) server, which is "a fork of Paper, Tuinity,
Extra variables:
- `PURPUR_BUILD=LATEST` : set a specific Purpur build to use
- `FORCE_REDOWNLOAD=false` : set to true to force the located server jar to be re-downloaded
- `USE_FLARE_FLAGS=false` : set to true to add appropriate flags for the [Flare](https://blog.airplane.gg/flare) profiler
## Running a Yatopia server
@@ -350,6 +355,7 @@ A [Yatopia](https://github.com/YatopiaMC/Yatopia) server, which is a "blazing fa
Extra variables:
- `RELEASE=stable` : set to `stable` or `latest`
- `FORCE_REDOWNLOAD=false` : set to true to force the located server jar to be re-downloaded
- `USE_FLARE_FLAGS=false` : set to true to add appropriate flags for the [Flare](https://blog.airplane.gg/flare) profiler
## Running a Magma server

View File

@@ -19,7 +19,7 @@ fi
export SERVER=airplane-${VANILLA_VERSION}-jdk${JAVA_VER}.jar
if [ ! -f "$SERVER" ] || [ -n "$FORCE_REDOWNLOAD" ]; then
if [ ! -f "$SERVER" ] || isTrue "$FORCE_REDOWNLOAD"; then
downloadUrl="https://dl.airplane.gg/latest/Airplane-JDK${JAVA_VER}/launcher-airplane.jar"
log "Downloading Airplane from $downloadUrl ..."
curl -fsSL -o "$SERVER" "$downloadUrl"

View File

@@ -161,6 +161,13 @@ if isTrue "${USE_LARGE_PAGES}"; then
"
fi
if isTrue "${USE_FLARE_FLAGS}"; then
JVM_XX_OPTS="${JVM_XX_OPTS}
-XX:+UnlockDiagnosticVMOptions
-XX:+DebugNonSafepoints
"
fi
if isTrue "${DEBUG_MEMORY}"; then
log "Memory usage and availability (in MB)"
uname -a