Skip to content

Commit

Permalink
Add server pack (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
voruti authored Sep 14, 2021
1 parent 34f9ff3 commit 809cdfb
Show file tree
Hide file tree
Showing 5 changed files with 372 additions and 1 deletion.
42 changes: 42 additions & 0 deletions .github/workflows/serverPack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This is a basic workflow to help you get started with Actions

name: CI Server Pack

# Controls when the workflow will run
on:
# Triggers the workflow on release
release:
types: [published]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Extract tag name
id: tag
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}

# Runs a set of commands using the runners shell
- name: Collect files for server pack
run: |
cp -r template/ server/world/
cp LICENSE server/LICENSE
sed -i 's#modpackplaceholderurl#https://github.com/${{ github.repository }}/releases/download/${{ steps.tag.outputs.version }}/CraftBlock-${{ steps.tag.outputs.version }}.zip#g' server/server-setup-config.yaml
cd server/
zip -r ../craftBlockServer.zip *
- name: Upload file to GitHub release
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: craftBlockServer.zip
asset_name: CraftBlock-Server-${{ steps.tag.outputs.version }}.zip
tag: ${{ github.ref }}
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Ignore everything...
*

# except for the gitignore file
# except for git files
!.gitignore
!.github/
!.github/**

# except the scripts folder

Expand Down Expand Up @@ -52,3 +54,9 @@
# gradle
/advancements/.gradle
/advancements/build

# server pack
!server/
!server/server-setup-config.yaml
!server/startserver.bat
!server/startserver.sh
223 changes: 223 additions & 0 deletions server/server-setup-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,223 @@
# https://github.com/AllTheMods/alltheservers
#
# The MIT License (MIT)
#
# Copyright (c) 2018 BloodWorkXGaming
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


# Version of the specs, only for internal usage if this format should ever change drastically
_specver: 2

# modpack related settings, changes the supposed to change the visual appearance of the launcher
modpack:
# Name of the mod pack, that is displayed in various places where it fits
name: CraftBlock

# Description
description: CraftBlock stands for Craft Attack 3 Skyblock and is an expert skyblock modpack like FTB Infinity Evolved Skyblock.


# settings regarding the installation of the modpack
install:
# version of minecraft, needs the exact version
mcVersion: 1.12.2

# exact version of forge or fabric that is supposed to be used
# if this value is a null value so ( ~, null, or "" ) then the version from the mod pack is going to be used
loaderVersion: ~

# If a custom installer is supposed to used, specify the url here: (Otherwise put "", ~ or null here)
# supports variables: {{@loaderversion@}} and {{@mcversion@}}
# For forge: "http://files.minecraftforge.net/maven/net/minecraftforge/forge/{{@mcversion@}}-{{@loaderversion@}}/forge-{{@mcversion@}}-{{@loaderversion@}}-installer.jar"
# For Fabric: "https://maven.fabricmc.net/net/fabricmc/fabric-installer/{{@loaderversion@}}/fabric-installer-{{@loaderversion@}}.jar"
installerUrl: http://files.minecraftforge.net/maven/net/minecraftforge/forge/{{@mcversion@}}-{{@loaderversion@}}/forge-{{@mcversion@}}-{{@loaderversion@}}-installer.jar

# Installer Arguments
# These Arguments have to be passed to the installer
#
# For Fabric:
# installerArguments:
# - "server"
# - "-downloadMinecraft"
# - "-snapshot"
# - "-mcversion"
# - "1.16.4"
# - "-loader"
# - "0.10.6+build.214"
#
# For Forge:
# installerArguments:
# - "--installServer"
installerArguments:
- "--installServer"

# Link to where the file where the modpack can be distributed
# This supports loading from local files as well for most pack types if there is file://{PathToFile} in the beginning
modpackUrl: modpackplaceholderurl

# This is used to specify in which format the modpack is distributed, the server launcher has to handle each individually if their format differs
# current supported formats:
# - curseforge or curse
# - curseid
# - zip or zipfile
modpackFormat: curse

# Settings which are specific to the format used, might not be needed in some casese
formatSpecific:
# optional paramenter used for curse to specify a whole project to ignore (mostly if it is client side only)
ignoreProject:
- 243478 # More Overlays
- 250398 # Controlling
- 268324 # Blur
- 333760 # Splash Logo Color Fix
- 237701 # ReAuth
- 231275 # Ding
- 226447 # Resource Loader
- 60089 # Mouse Tweaks
- 240630 # Just Enough Resources (JER)
- 267939 # Just Enough HarvestCraft (JEHC)
- 244019 # Lockdown

# The base path where the server should be installed to, ~ for current path
baseInstallPath: ~

# a list of files which are supposed to be ignored when installing it from the client files
# this can either use regex or glob {default glob: https://docs.oracle.com/javase/8/docs/api/java/nio/file/FileSystem.html#getPathMatcher-java.lang.String-}
# specify with regex:.... or glob:.... if you want to force a matching type
ignoreFiles:
- resources/**

# often a server needs more files, which are nearly useless on the client, such as tickprofiler
# This is a list of files, each ' - ' is a new file:
# url is the directlink to the file, destination is the path to where the file should be copied to
# additionalFiles:
# - url: https://media.forgecdn.net/files/3101/200/tellme-fabric-1.16.4-0.9.1-beta.1.jar
# destination: mods/tellme-fabric-1.16.4-0.9.1-beta.1.jar
# - url: https://media.forgecdn.net/files/3097/870/blocklogger-0.2.1.jar
# destination: mods/blocklogger-0.2.1.jar
# - url: https://media.forgecdn.net/files/3072/467/BlueMap-1.2.0-snap-fabric-1.16.3.jar
# destination: mods/BlueMap-1.2.0-snap-fabric-1.16.3.jar
# - url: https://media.forgecdn.net/files/3082/894/hypnos-0.1.1.jar
# destination: mods/hypnos-0.1.1.jar
# - url: https://media.forgecdn.net/files/3109/728/InvView-1.2.0-1.16.2%2B.jar
# destination: mods/InvView-1.2.0-1.16.2%2B.jar
# - url: https://media.forgecdn.net/files/3098/760/FabriKommander-1.0.0-MC1.16.3.jar
# destination: mods/FabriKommander-1.0.0-MC1.16.3.jar
# - url: https://media.forgecdn.net/files/3104/633/flan-1.16.2-1.1.4.jar
# destination: mods/flan-1.16.2-1.1.4.jar
# - url: https://ci.lucko.me/job/spark/lastSuccessfulBuild/artifact/spark-fabric/build/libs/spark-fabric.jar
# destination: mods/spark-fabric.jar
# - url: https://media.forgecdn.net/files/3115/560/disfabric-1.16.4-1.2.0.jar
# destination: mods/disfabric-1.16.4-1.2.0.jar
# - url: https://media.forgecdn.net/files/3009/753/shutupconsole-1.1.jar
# destination: mods/shutupconsole-1.1.jar
# - url: https://cdn.discordapp.com/attachments/750220836191076383/778900805402492958/advdebug-2.2.0.jar
# destination: mods/advdebug-2.2.0.jar

# For often there are config which the user wants to change, here is the place to put the local path to configs, jars or whatever
# You can copy files or folders:
#
# localFiles:
# - from: OLD_TO_DELETE/config/disfabric.json5
# to: config/disfabric.json5
# - from: OLD_TO_DELETE/config/charm.toml
# to: config/charm.toml
# - from: OLD_TO_DELETE/config/hypnos.json
# to: config/hypnos.json
# - from: OLD_TO_DELETE/config/shutupconsole.toml
# to: config/shutupconsole.toml
# - from: OLD_TO_DELETE/kubejs/server_scripts/custom.js
# to: kubejs/server_scripts/custom.js
# - from: OLD_TO_DELETE/config/indrev/cables.json
# to: config/indrev/cables.json

# This makes the program check the folder for whether it is supposed to use the
checkFolder: yes

# Whether to install the Loader (Forge or Fabric) or not, should always be yes/true unless you only want to install the pack
installLoader: yes

# Sponge bootstrapper jar URL
# Only needed if you have spongefix enabled
spongeBootstrapper: https://github.com/simon816/SpongeBootstrap/releases/download/v0.7.1/SpongeBootstrap-0.7.1.jar




# settings regarding the launching of the pack
launch:
# applies the launch wrapper to fix sponge for a few mods
spongefix: no

# Use a RAMDisk for the world folder
# case-sensitive; use only lowercase `yes` or `no`
# NOTE: The server must have run once fully before switching to `yes`!
ramDisk: no

# checks with the help of a few unrelated server whether the server is online
checkOffline: no

# specifies the max amount of ram the server is supposed to launch with
maxRam: 4G

# specifies the minimal amount of ram the server is supposed to launch with
# minRam: 4G

# specifies whether the server is supposed to auto restart after crash
autoRestart: yes

# after a given amount of crashes in a given time the server will stop auto restarting
crashLimit: 10

# Time a crash should be still accounted for in the {crashLimit}
# syntax is either [number]h or [number]min or [number]s
crashTimer: 60min

# Arguments that need to go before the 'java' argument, something like linux niceness
# This is only a string, not a list.
preJavaArgs: ~

# Start File Name, variables: {{@loaderversion@}} and {{@mcversion@}}
# This has to be the name the installer spits out
# For Forge 1.12-: "forge-{{@mcversion@}}-{{@loaderversion@}}-universal.jar"
# For Forge 1.13+: "forge-{{@mcversion@}}-{{@loaderversion@}}.jar"
# For Fabric: "fabric-server-launch.jar"
startFile: forge-{{@mcversion@}}-{{@loaderversion@}}.jar

# In case you have multiple javas installed you can add a absolute path to it here
# if the value is "", null, or ~ then 'java' from PATH is going to be used
# Example: "\"C:/Program Files/Java/jre1.8.0_201/bin/java.exe\""
forcedJavaPath: ~

# Java args that are supposed to be used when the server launches
# keep in mind java args often need ' - ' in front of it to work, use clarifying parentheses to make sure it uses it correctly
# Keep in mind that some arguments only work on JRE 1.8
javaArgs:
- "-XX:+UseG1GC"
- "-XX:+ParallelRefProcEnabled"
- "-XX:MaxGCPauseMillis=30"
- "-XX:+UnlockExperimentalVMOptions"
- "-XX:+DisableExplicitGC"
- "-XX:+AlwaysPreTouch"
- "-XX:G1NewSizePercent=30"
- "-XX:G1MaxNewSizePercent=40"
- "-XX:G1HeapRegionSize=8M"
- "-XX:G1ReservePercent=25"
- "-XX:G1HeapWastePercent=5"
- "-XX:G1MixedGCCountTarget=4"
- "-XX:InitiatingHeapOccupancyPercent=15"
- "-XX:G1MixedGCLiveThresholdPercent=90"
- "-XX:G1RSetUpdatingPauseTimePercent=5"
- "-XX:SurvivorRatio=32"
- "-XX:+PerfDisableSharedMem"
- "-XX:MaxTenuringThreshold=1"
- "-Dusing.aikars.flags=https://mcflags.emc.gs"
- "-Daikars.new.flags=true"
- "-XX:ConcGCThreads=3"
- "-XX:ParallelGCThreads=12"
61 changes: 61 additions & 0 deletions server/startserver.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
REM https://github.com/AllTheMods/alltheservers
REM
REM The MIT License (MIT)
REM
REM Copyright (c) 2018 BloodWorkXGaming
REM
REM Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
REM
REM The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
REM
REM THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@ECHO OFF
SETLOCAL


:BEGIN
CLS
COLOR 3F >nul 2>&1
SET MC_SYS32=%SYSTEMROOT%\SYSTEM32
REM Make batch directory the same as the directory it's being called from
REM For example, if "run as admin" the batch starting dir could be system32
CD "%~dp0" >nul 2>&1


:CHECKJAVA
ECHO INFO: Checking java installation...
ECHO.

REM If no Java is installed this line will catch it simply
java -version >nul 2>&1
ECHO.
IF %ERRORLEVEL% EQU 0 (
ECHO INFO: Found Java.
GOTO CHECK
) ELSE (
GOTO JAVAERROR
)

:MAIN
java -jar serverstarter-2.0.1.jar
GOTO EOF

:CHECK
REM Check if serverstarter JAR is already downloaded
IF NOT EXIST "%cd%\serverstarter-2.0.1.jar" (
ECHO serverstarter binary not found, downloading serverstarter...
%SYSTEMROOT%\SYSTEM32\bitsadmin.exe /rawreturn /nowrap /transfer starter /dynamic /download /priority foreground https://github.com/AllTheMods/alltheservers/releases/download/2.0.1/serverstarter-2.0.1.jar "%cd%\serverstarter-2.0.1.jar"
GOTO MAIN
) ELSE (
GOTO MAIN
)


:JAVAERROR
COLOR CF
ECHO ERROR: Could not find Java installed or in PATH
PAUSE


:EOF
pause
37 changes: 37 additions & 0 deletions server/startserver.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#!/bin/bash
#
# https://github.com/AllTheMods/alltheservers
#
# The MIT License (MIT)
#
# Copyright (c) 2018 BloodWorkXGaming
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
set -euo pipefail

# check for serverstarter jar
if [[ -f serverstarter-2.0.1.jar ]]; then
echo "Skipping download. Using existing serverstarter-2.0.1.jar"
java -jar serverstarter-2.0.1.jar
exit 0
else
# download missing serverstarter jar
URL="https://github.com/AllTheMods/alltheservers/releases/download/2.0.1/serverstarter-2.0.1.jar"

if command -v wget &> /dev/null; then
echo "DEBUG: (wget) Downloading ${URL}"
wget -O serverstarter-2.0.1.jar "${URL}"
elif command -v curl &> /dev/null; then
echo "DEBUG: (curl) Downloading ${URL}"
curl -o serverstarter-2.0.1.jar "${URL}"
else
echo "Neither wget or curl were found on your system. Please install one and try again"
exit 1
fi
fi

java -jar serverstarter-2.0.1.jar

0 comments on commit 809cdfb

Please sign in to comment.