Restructure repository

* Move /common/src to /src
* Move services to net.psforever package
* Move /pslogin to /server
This commit is contained in:
Jakob Gillich 2020-08-23 03:26:06 +02:00
parent 89a30ae6f6
commit f4fd78fc5d
958 changed files with 527 additions and 725 deletions

View file

@ -32,9 +32,9 @@ jobs:
- name: Install pscrypto
run: curl -L https://github.com/psforever/PSCrypto/releases/download/v1.1/pscrypto-lib-1.1.zip | jar vx
- name: Run migrations
run: sbt "pslogin/run migrate"
run: sbt "server/run migrate"
- name: Run build
run: sbt packArchiveZip
run: sbt server/packArchiveZip
- name: Run tests
run: sbt coverage test:compile quiet:test coverageReport
- name: Upload coverage
@ -42,8 +42,8 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: pslogin.zip
path: target/pslogin*.zip
name: server.zip
path: server/target/server*.zip
docker:
runs-on: ubuntu-latest
steps: