Skip to content

Commit

Permalink
Disable Mangos build checks
Browse files Browse the repository at this point in the history
Dependency submodule needs to be fixed on Mangos cores before multistate can be ported.
  • Loading branch information
Foereaper authored Feb 29, 2024
1 parent 5ed6c07 commit 0c2e5ee
Showing 1 changed file with 30 additions and 29 deletions.
59 changes: 30 additions & 29 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,35 +141,36 @@ jobs:
# - name: Check startup errors
# run: source ./apps/ci/ci-error-check.sh

mangos-Eluna:
strategy:
fail-fast: false
matrix:
eluna: [ON, OFF]
patch: [zero, one, two]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
repository: mangos${{ matrix.patch }}/server
ref: master
- uses: actions/checkout@v3
with:
path: src/modules/Eluna
- name: Configure
env:
ELUNA: ${{ matrix.eluna }}
run: |
mkdir bin
cd bin
cmake .. -DSCRIPT_LIB_ELUNA=$ELUNA -DCMAKE_INSTALL_PREFIX=install -DSOAP=1 -DPLAYERBOTS=0 -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/
cd ..
- name: Build
run: |
cd bin
make -j4
make install
# Disable Mangos builds for now until Mangos deps are fixed and multistate can be ported
# mangos-Eluna:
# strategy:
# fail-fast: false
# matrix:
# eluna: [ON, OFF]
# patch: [zero, one, two]
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v3
# with:
# submodules: recursive
# repository: mangos${{ matrix.patch }}/server
# ref: master
# - uses: actions/checkout@v3
# with:
# path: src/modules/Eluna
# - name: Configure
# env:
# ELUNA: ${{ matrix.eluna }}
# run: |
# mkdir bin
# cd bin
# cmake .. -DSCRIPT_LIB_ELUNA=$ELUNA -DCMAKE_INSTALL_PREFIX=install -DSOAP=1 -DPLAYERBOTS=0 -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/
# cd ..
# - name: Build
# run: |
# cd bin
# make -j4
# make install

cmangos-Eluna:
strategy:
Expand Down

0 comments on commit 0c2e5ee

Please sign in to comment.