forked from SleepyTrousers/EnderIO-1.5-1.12
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update .github scripts and buildscript (#56)
* additional dep cleanup * build and test * remove library
- Loading branch information
Showing
7 changed files
with
100 additions
and
100 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/usr/bin/env bash | ||
|
||
RUNDIR="run" | ||
CRASH="crash-reports" | ||
SERVERLOG="server.log" | ||
|
||
if [[ -d $RUNDIR/$CRASH ]]; then | ||
echo "Crash reports detected:" | ||
cat $RUNDIR/$CRASH/crash*.txt | ||
exit 1 | ||
fi | ||
|
||
if grep --quiet "Fatal errors were detected" $SERVERLOG; then | ||
echo "Fatal errors detected:" | ||
cat server.log | ||
exit 1 | ||
fi | ||
|
||
if grep --quiet "The state engine was in incorrect state ERRORED and forced into state SERVER_STOPPED" $SERVERLOG; then | ||
echo "Server force stopped:" | ||
cat server.log | ||
exit 1 | ||
fi | ||
|
||
if ! grep --quiet -Po '.+Done \(.+\)\! For help, type "help" or "\?"' $SERVERLOG; then | ||
echo "Server didn't finish startup:" | ||
cat server.log | ||
exit 1 | ||
fi | ||
|
||
echo "No crash reports detected" | ||
exit 0 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,24 @@ | ||
// Add your dependencies here | ||
|
||
dependencies { | ||
compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.3:dev") | ||
compile("com.github.GTNewHorizons:CodeChickenCore:1.1.4:dev") | ||
compile("com.github.GTNewHorizons:EnderCore:0.2.6:dev") | ||
compile("com.github.GTNewHorizons:ForestryMC:4.4.5:dev") | ||
compile("com.github.GTNewHorizons:NotEnoughItems:2.2.7-GTNH:dev") | ||
compile("curse.maven:cofh-lib-220333:2388748") // https://www.curseforge.com/minecraft/mc-mods/cofh-lib/files/2388748 | ||
compile("com.github.GTNewHorizons:BuildCraft:7.1.27:dev") | ||
shadowImplementation("cglib:cglib-nodep:3.3.0") | ||
compile('com.github.GTNewHorizons:EnderCore:0.2.6:dev') | ||
compile('com.github.GTNewHorizons:ForestryMC:4.4.5:dev') | ||
compile('com.github.GTNewHorizons:NotEnoughItems:2.2.7-GTNH:dev') | ||
compile('com.github.GTNewHorizons:BuildCraft:7.1.27:dev') | ||
compile('curse.maven:cofh-lib-220333:2388748') // https://www.curseforge.com/minecraft/mc-mods/cofh-lib/files/2388748 | ||
shadowImplementation('cglib:cglib-nodep:3.3.0') | ||
|
||
compileOnly("com.github.GTNewHorizons:waila:1.5.19:api") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-76-GTNH:api") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:Baubles:1.0.1.14:dev") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:Railcraft:9.13.6:api") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:StorageDrawers:1.11.13-GTNH:api") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:Chisel:2.10.8-GTNH:dev") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:OpenComputers:1.7.5.23-GTNH:api") { | ||
transitive = false | ||
} | ||
compileOnly("curse.maven:minefactory-reloaded-66672:2366150") { // https://www.curseforge.com/minecraft/mc-mods/minefactory-reloaded/files/2366150 | ||
transitive = false | ||
} | ||
compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") { | ||
transitive = false | ||
} | ||
compileOnly("curse.maven:ee3-65509:2305023") { // https://www.curseforge.com/minecraft/mc-mods/ee3/files/2305023 | ||
transitive = false | ||
} | ||
compileOnly(deobf("https://media.forgecdn.net/files/2269/339/ComputerCraft1.75.jar")) // https://www.curseforge.com/minecraft/mc-mods/computercraft/files/2269339 | ||
compileOnly(deobf("https://s3.amazonaws.com/aidancbrady/mekanism/281-recommended/Mekanism-1.7.10-9.1.0.281.jar")) // https://aidancbrady.com/mekanism/download/ | ||
compileOnly deobf("https://immibis.com/mcmoddl/files/immibis-microblocks-59.1.2.jar") | ||
compileOnly('com.github.GTNewHorizons:waila:1.5.19:api') {transitive = false} | ||
compileOnly('com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-76-GTNH:api') {transitive = false} | ||
compileOnly('com.github.GTNewHorizons:Baubles:1.0.1.14:dev') {transitive = false} | ||
compileOnly('com.github.GTNewHorizons:Railcraft:9.13.6:api') {transitive = false} | ||
compileOnly('com.github.GTNewHorizons:StorageDrawers:1.11.13-GTNH:api') {transitive = false} | ||
compileOnly('com.github.GTNewHorizons:Chisel:2.10.8-GTNH:dev') {transitive = false} | ||
compileOnly('com.github.GTNewHorizons:OpenComputers:1.7.5.23-GTNH:api') {transitive = false} | ||
compileOnly('curse.maven:minefactory-reloaded-66672:2366150') // https://www.curseforge.com/minecraft/mc-mods/minefactory-reloaded/files/2366150 | ||
compileOnly('thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev') | ||
compileOnly('curse.maven:ee3-65509:2305023') // https://www.curseforge.com/minecraft/mc-mods/ee3/files/2305023 | ||
compileOnly(deobf('https://media.forgecdn.net/files/2269/339/ComputerCraft1.75.jar')) // https://www.curseforge.com/minecraft/mc-mods/computercraft/files/2269339 | ||
compileOnly(deobf('https://s3.amazonaws.com/aidancbrady/mekanism/281-recommended/Mekanism-1.7.10-9.1.0.281.jar')) // https://aidancbrady.com/mekanism/download/ | ||
compileOnly(deobf('https://immibis.com/mcmoddl/files/immibis-microblocks-59.1.2.jar')) | ||
} |
Binary file not shown.
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