Add Meson Build System to CMaNGOS Classic #12
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
name: MacOs build | |
on: [push] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
REPO_DIR : ${{github.workspace}} | |
BUILD_DIR: ${{github.workspace}}/bin/builddir | |
BOOST_PLATFORM_VERSION: "11" | |
BOOST_VERSION: "1.79.0" | |
BOOST_INSTALL_DIR: "${{github.workspace}}/bin" | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: macos-11 | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
path: ${{env.REPO_DIR}} | |
- name: Install dependencies | |
run: | | |
brew install mysql-client | |
brew install openssl | |
echo "OPENSSL_ROOT_DIR=$(brew --prefix --installed openssl)" >> $GITHUB_ENV | |
mkdir -p ${{env.BOOST_INSTALL_DIR}} | |
- name: Cache Windows boost | |
uses: actions/cache@v2 | |
id: cache-boost | |
with: | |
path: "${{env.BOOST_INSTALL_DIR}}/boost" | |
key: ${{ runner.os }}-${{ hashFiles('.github/workflows/macos.yml') }} | |
- if: steps.cache-boost.outputs.cache-hit != 'true' | |
name: Install boost | |
uses: MarkusJx/[email protected] | |
id: install-boost | |
with: | |
# REQUIRED: Specify the required boost version | |
# A list of supported versions can be found here: | |
# https://github.com/actions/boost-versions/blob/main/versions-manifest.json | |
boost_version: ${{env.BOOST_VERSION}} | |
# OPTIONAL: Specify a platform version | |
platform_version: ${{env.BOOST_PLATFORM_VERSION}} | |
# OPTIONAL: Specify a custom install location | |
boost_install_dir: ${{env.BOOST_INSTALL_DIR}} | |
# OPTIONAL: Specify a toolset | |
toolset: clang | |
- name: Configure | |
env: | |
BOOST_ROOT: "${{env.BOOST_INSTALL_DIR}}/boost/boost" | |
run: cmake -B ${{env.BUILD_DIR}} -S ${{env.REPO_DIR}} -DBoost_ARCHITECTURE=-x64 | |
- name: Build | |
env: | |
MAKEFLAGS: "-j8" | |
run: cmake --build ${{env.BUILD_DIR}} --config ${{env.BUILD_TYPE}} | |
notify: | |
permissions: | |
contents: none | |
name: Discord Notification | |
runs-on: ubuntu-20.04 | |
needs: # make sure the notification is sent AFTER the jobs you want included have completed | |
- build | |
if: failure() | |
steps: | |
- name: Env | |
run: | | |
echo "GIT_BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV | |
echo "GIT_SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV | |
- name: Notify | |
uses: rjstone/[email protected] | |
with: | |
severity: error | |
username: ${{env.EXPENSION_NAME}}-core | |
description: | | |
**MacOS buid failed** | |
details: | | |
- **Branch:** ${{env.GIT_BRANCH}} | |
- **Pusher:** ${{github.event.pusher.name}} | |
- **Author:** ${{github.event.head_commit.author.name}} | |
- **Commit:** [${{github.repository}}/${{env.GIT_SHORT_SHA}}](${{github.server_url}}/${{ github.repository }}/commit/${{github.sha}}) | |
- **Build log:** [actions/runs/${{github.run_id}}](${{github.server_url}}/${{github.repository}}/actions/runs/${{github.run_id}}) | |
footer: Next time ${{github.event.pusher.name}}! | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
avatarUrl: https://github.githubassets.com/images/modules/logos_page/Octocat.png |