mirror of https://github.com/cabaletta/baritone
allow a little more time
This commit is contained in:
parent
9624e343af
commit
00658dcaba
|
@ -14,6 +14,7 @@ script:
|
|||
- docker run --name baritone cabaletta/baritone /bin/sh -c "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 128x128x24 -ac +extension GLX +render; sh scripts/build.sh; DISPLAY=:99 BARITONE_AUTO_TEST=true ./gradlew runClient"
|
||||
- docker cp baritone:/code/dist dist
|
||||
- ls dist
|
||||
- jshon -s "$(cat dist/checksums.txt)"
|
||||
|
||||
deploy:
|
||||
provider: releases
|
||||
|
|
|
@ -20,5 +20,4 @@ java -jar ../../proguard6.0.3/lib/proguard.jar @standalone.pro
|
|||
mv Obfuscated/baritone-$VERSION.jar ../../dist/baritone-standalone-$VERSION.jar
|
||||
mv baritone-$VERSION.jar ../../dist/baritone-unoptimized-$VERSION.jar
|
||||
cd ../..
|
||||
shasum dist/* | tee dist/checksums.txt
|
||||
jshon -s "$(cat dist/checksums.txt)"
|
||||
shasum dist/* | tee dist/checksums.txt
|
|
@ -33,7 +33,7 @@ public class BaritoneAutoTest implements AbstractGameEventListener, Helper {
|
|||
private static final long TEST_SEED = -928872506371745L;
|
||||
private static final BlockPos STARTING_POSITION = new BlockPos(50, 65, 50);
|
||||
private static final Goal GOAL = new GoalXZ(100, 100);
|
||||
private static final int MAX_TICKS = 800;
|
||||
private static final int MAX_TICKS = 1000;
|
||||
|
||||
@Override
|
||||
public void onTick(TickEvent event) {
|
||||
|
|
Loading…
Reference in New Issue