mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-24 09:28:21 +00:00
Re-add release dependencies and package libs
Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com>
This commit is contained in:
@@ -29,6 +29,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-release-ccache-${{ hashFiles('.github/workflows/release.yaml') }}
|
key: ${{ runner.os }}-release-ccache-${{ hashFiles('.github/workflows/release.yaml') }}
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y build-essential ninja-build ccache uuid-dev
|
||||||
|
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: |
|
run: |
|
||||||
cmake -S . -B build -G Ninja \
|
cmake -S . -B build -G Ninja \
|
||||||
@@ -69,6 +74,13 @@ jobs:
|
|||||||
zip -uj eqemu-server-linux-x64.zip "$f"
|
zip -uj eqemu-server-linux-x64.zip "$f"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Add shared libraries needed for runtime
|
||||||
|
for f in *.so*; do
|
||||||
|
if [ -f "$f" ]; then
|
||||||
|
zip -uj eqemu-server-linux-x64.zip "$f"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
# Verify zip file was created and contains files
|
# Verify zip file was created and contains files
|
||||||
if [ ! -f eqemu-server-linux-x64.zip ]; then
|
if [ ! -f eqemu-server-linux-x64.zip ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user