Restore Linux tests and user mapping

Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-01-24 23:29:19 +00:00
parent 6648ec2f03
commit e414975fc5

View File

@ -9,7 +9,9 @@ jobs:
linux:
name: Linux
runs-on: ubuntu-latest
container: akkadius/eqemu-server:v16
container:
image: akkadius/eqemu-server:v16
options: --user 1001:1001
steps:
- name: Checkout source
uses: actions/checkout@v5
@ -24,9 +26,13 @@ jobs:
working-directory: ${{ github.workspace }}
run: |
mkdir -p build && cd build
cmake -DEQEMU_BUILD_LOGIN=ON -DEQEMU_BUILD_LUA=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
cmake -DEQEMU_BUILD_TESTS=ON -DEQEMU_BUILD_LOGIN=ON -DEQEMU_BUILD_LUA=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
make -j"$(nproc)"
- name: Test
working-directory: build
run: ./bin/tests
- name: Package linux binaries
working-directory: ${{ github.workspace }}
run: |