???
Some checks failed
/ example-docker-compose (push) Failing after 22s

This commit is contained in:
Failure 2024-11-14 22:27:18 -08:00
parent 996cbcaf39
commit aaebe3927d
2 changed files with 26 additions and 1 deletions

View file

@ -0,0 +1,23 @@
on:
push:
branches:
- 'master'
jobs:
example-docker-compose:
runs-on: alpine
steps:
- uses: actions/checkout@v4
- name: Build Mage
run: |
apk update
apk add openjdk8-jdk maven
mvn clean install -DskipTests
- uses: actions/upload-artifact@v4
with:
name: files
path: |
./Mage.Client/target/mage-client.zip
./Mage.Server/target/mage-server.zip

View file

@ -47,7 +47,7 @@
socketWriteTimeout="10000" socketWriteTimeout="10000"
maxGameThreads="10" maxGameThreads="10"
maxSecondsIdle="300" maxSecondsIdle="300"
minUserNameLength="3" minUserNameLength="1"
maxUserNameLength="14" maxUserNameLength="14"
invalidUserNamePattern="[^a-z0-9_]" invalidUserNamePattern="[^a-z0-9_]"
minPasswordLength="8" minPasswordLength="8"
@ -63,6 +63,8 @@
mailUser="" mailUser=""
mailPassword="" mailPassword=""
mailFromAddress="" mailFromAddress=""
httpAuth="false"
authUrl=""
/> />
<playerTypes> <playerTypes>
<playerType name="Human" jar="mage-player-human.jar" className="mage.player.human.HumanPlayer"/> <playerType name="Human" jar="mage-player-human.jar" className="mage.player.human.HumanPlayer"/>