2021-08-28 12:14:55 +02:00
|
|
|
name: macos
|
|
|
|
|
|
|
|
# build on c/cpp changes or workflow changes
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'lib/**.[ch]'
|
|
|
|
- 'lib/**.cpp'
|
|
|
|
- 'src/**.[ch]'
|
|
|
|
- 'src/**.cpp'
|
|
|
|
- '**/CMakeLists.txt'
|
|
|
|
- 'cmake/Modules/**'
|
|
|
|
- '.github/workflows/macos.yml'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'lib/**.[ch]'
|
|
|
|
- 'lib/**.cpp'
|
|
|
|
- 'src/**.[ch]'
|
|
|
|
- 'src/**.cpp'
|
|
|
|
- '**/CMakeLists.txt'
|
|
|
|
- 'cmake/Modules/**'
|
|
|
|
- '.github/workflows/macos.yml'
|
|
|
|
|
|
|
|
env:
|
2022-07-21 20:35:33 +02:00
|
|
|
IRRLICHT_TAG: 1.9.0mt7
|
2021-08-28 12:14:55 +02:00
|
|
|
MINETEST_GAME_REPO: https://github.com/minetest/minetest_game.git
|
|
|
|
MINETEST_GAME_BRANCH: master
|
|
|
|
MINETEST_GAME_NAME: minetest_game
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: macos-10.15
|
|
|
|
steps:
|
2022-05-01 14:44:48 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-08-28 12:14:55 +02:00
|
|
|
- name: Install deps
|
|
|
|
run: |
|
2021-09-01 02:32:31 +02:00
|
|
|
pkgs=(cmake freetype gettext gmp hiredis jpeg jsoncpp leveldb libogg libpng libvorbis luajit zstd)
|
2021-08-28 12:14:55 +02:00
|
|
|
brew update
|
|
|
|
brew install ${pkgs[@]}
|
|
|
|
brew unlink $(brew ls --formula)
|
|
|
|
brew link ${pkgs[@]}
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
git clone -b $MINETEST_GAME_BRANCH $MINETEST_GAME_REPO games/$MINETEST_GAME_NAME
|
|
|
|
rm -rvf games/$MINETEST_GAME_NAME/.git
|
|
|
|
git clone https://github.com/minetest/irrlicht -b $IRRLICHT_TAG lib/irrlichtmt
|
2021-12-02 00:32:41 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2021-08-28 12:14:55 +02:00
|
|
|
cmake .. \
|
|
|
|
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 \
|
|
|
|
-DCMAKE_FIND_FRAMEWORK=LAST \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=../build/macos/ \
|
|
|
|
-DRUN_IN_PLACE=FALSE \
|
|
|
|
-DENABLE_FREETYPE=TRUE -DENABLE_GETTEXT=TRUE
|
|
|
|
make -j2
|
|
|
|
make install
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
./build/macos/minetest.app/Contents/MacOS/minetest --run-unittests
|
|
|
|
|
2022-06-13 18:30:48 +02:00
|
|
|
# Zipping the built .app preserves permissions on the contained files,
|
|
|
|
# which the GitHub artifact pipeline would otherwise strip away.
|
|
|
|
- name: CPack
|
|
|
|
run: |
|
|
|
|
cd build
|
|
|
|
cpack -G ZIP -B macos
|
|
|
|
|
2022-05-01 14:44:48 +02:00
|
|
|
- uses: actions/upload-artifact@v3
|
2021-08-28 12:14:55 +02:00
|
|
|
with:
|
|
|
|
name: minetest-macos
|
2022-06-13 18:30:48 +02:00
|
|
|
path: ./build/macos/*.zip
|