Replace ACE with native IO implementation #4779
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#3 build types | |
# - gcc under Ubuntu | |
# - clang under Ubuntu | |
# - visual studio under Windows | |
# | |
# Builds are set to use 2 threads per type | |
name: vmangos CI build | |
on: | |
push: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.github/ISSUE_TEMPLATE.md' | |
- '.github/PULL_REQUEST_TEMPLATE.md' | |
- '.github/workflows/db_check.yml' | |
- '.github/workflows/db_dump.yml' | |
- 'sql/**' | |
- 'README.md' | |
- 'LICENSE' | |
- '.gitignore' | |
- 'CONTRIBUTING.md' | |
pull_request: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.github/ISSUE_TEMPLATE.md' | |
- '.github/PULL_REQUEST_TEMPLATE.md' | |
- '.github/workflows/db_check.yml' | |
- '.github/workflows/db_dump.yml' | |
- 'sql/**' | |
- 'README.md' | |
- 'LICENSE' | |
- '.gitignore' | |
- 'CONTRIBUTING.md' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
#matrix declaration | |
matrix: | |
os: [ubuntu-latest] | |
compiler: [gcc, clang] | |
include: | |
- os: windows-2019 | |
steps: | |
#git checkout | |
- uses: actions/checkout@v4 | |
#before install dependencies | |
- name: ubuntu dependencies | |
#ubuntu dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get -qq update | |
sudo apt-get -qq install build-essential cmake libmysql++-dev libtbb-dev libcurl4-openssl-dev openssl | |
#windows dependencies | |
- name: windows dependencies | |
if: matrix.os == 'windows-2019' | |
#Sets versions TBB | |
env: | |
TBB_VERSION: 2020.3 | |
run: | | |
# Setup TBB | |
export TBB_ROOT_DIR=$GITHUB_WORKSPACE/tbb | |
curl -LOJ https://github.com/oneapi-src/oneTBB/releases/download/v$TBB_VERSION/tbb-$TBB_VERSION-win.zip | |
unzip tbb-$TBB_VERSION-win.zip | |
rm tbb-$TBB_VERSION-win.zip | |
#git bash shell | |
shell: bash | |
#build and install | |
#ubuntu | |
- name: ubuntu build & install | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
mkdir build | |
mkdir _install | |
cd build | |
cmake ../ -DCMAKE_INSTALL_PREFIX=../_install -DWITH_WARNINGS=0 -DUSE_EXTRACTORS=1 -DENABLE_MAILSENDER=1 | |
make -j2 | |
make install | |
#windows | |
- name: windows build & install | |
if: matrix.os == 'windows-2019' | |
run: | | |
# Build CURL | |
cd $GITHUB_WORKSPACE/dep/windows/optional_dependencies/ | |
./curl_download_and_build.bat | |
# Build actual project | |
cd $GITHUB_WORKSPACE | |
mkdir build | |
cd build | |
cmake -D TBB_ROOT_DIR=$GITHUB_WORKSPACE/tbb -DWITH_WARNINGS=0 -DUSE_EXTRACTORS=1 -DENABLE_MAILSENDER=1 -G "Visual Studio 16 2019" -A x64 .. | |
/c/Program\ Files\ \(x86\)/Microsoft\ Visual\ Studio/2019/Enterprise/MSBuild/Current/Bin/MSBuild.exe "MaNGOS.sln" //p:Platform=x64 //p:Configuration=Release //m:2 | |
#git bash shell | |
shell: bash |