aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build-and-test.yml
diff options
context:
space:
mode:
authorbombcar <github@bombcar.com>2022-03-02 17:33:10 -0600
committerbombcar <github@bombcar.com>2022-03-02 17:33:10 -0600
commita67cfddb092c3b803c5785259c5a651355833ed3 (patch)
tree4144072aadc0e8686b1c65859830d8acaf77cde7 /.github/workflows/build-and-test.yml
parent57be1aa0c99ef4c26b6de94215f88c465adc599c (diff)
downloadGT5-Unofficial-a67cfddb092c3b803c5785259c5a651355833ed3.tar.gz
GT5-Unofficial-a67cfddb092c3b803c5785259c5a651355833ed3.tar.bz2
GT5-Unofficial-a67cfddb092c3b803c5785259c5a651355833ed3.zip
fix build
Diffstat (limited to '.github/workflows/build-and-test.yml')
-rw-r--r--.github/workflows/build-and-test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml
index 56a1ad52cc..948a90b218 100644
--- a/.github/workflows/build-and-test.yml
+++ b/.github/workflows/build-and-test.yml
@@ -33,11 +33,11 @@ jobs:
- name: Build the mod
run: ./gradlew build
- - name: Run server for 1.5 minutes
+ - name: Run server for 3 minutes
run: |
mkdir run
echo "eula=true" > run/eula.txt
- timeout 90 ./gradlew runServer 2>&1 | tee -a server.log || true
+ timeout 180 ./gradlew runServer 2>&1 | tee -a server.log || true
- name: Test no errors reported during server run
run: |