diff options
author | Fabian <Fabi@users.noreply.github.com> | 2024-03-01 17:49:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-01 17:49:27 +0100 |
commit | f487530c3a27625a2aa1241aeb380317d7a8747f (patch) | |
tree | 5ed6aac913170f39d7e836c818a4e8194e84ee14 /.github | |
parent | 67244a1f70273e20801b2ae668603af81d72d602 (diff) |
CI/Github: Add macOS arm64 github actions support. (#29771)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/macos-arm-build.yml | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/.github/workflows/macos-arm-build.yml b/.github/workflows/macos-arm-build.yml new file mode 100644 index 00000000000..3c890bd4dfb --- /dev/null +++ b/.github/workflows/macos-arm-build.yml @@ -0,0 +1,60 @@ +name: macOS arm64 + +on: + push: + pull_request: + +jobs: + build: + runs-on: macos-14 + + steps: + - uses: actions/checkout@v4 + + - name: Set reusable strings + id: strings + shell: bash + run: | + echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" + + - name: Install/Update requirements + env: + HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 + run: | + brew update + brew uninstall openssl@1.1 + brew install mysql openssl readline cmake boost coreutils ninja + brew config + + - name: Check some deps + run: | + mysql --version + openssl version + + - name: Print CPU info + run: | + echo "Cores: $(nproc), Arch: $(uname -p)" + + - name: Configure CMake + run: > + cmake -GNinja -B ${{ steps.strings.outputs.build-output-dir }} + -DWITH_WARNINGS=1 -DWITH_COREDEBUG=0 -DUSE_COREPCH=1 -DUSE_SCRIPTPCH=1 -DTOOLS=1 -DSCRIPTS=static -DSERVERS=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_FLAGS="-Werror" -DCMAKE_CXX_FLAGS="-Werror" -DCMAKE_C_FLAGS_DEBUG="-DNDEBUG" -DCMAKE_CXX_FLAGS_DEBUG="-DNDEBUG" -DBUILD_TESTING=1 + -DCMAKE_INSTALL_PREFIX=check_install + -S ${{ github.workspace }} + + - name: Build + run: | + cd ${{ steps.strings.outputs.build-output-dir }} + ninja + ninja install + + - name: Unit tests + run: | + cd ${{ steps.strings.outputs.build-output-dir }} + ninja test + + - name: Check binaries + run: | + cd ${{ github.workspace }}/check_install/bin + ./bnetserver --version + ./worldserver --version |