diff options
author | ROllerozxa <rollerozxa@voxelmanip.se> | 2023-01-09 20:34:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-09 20:34:13 +0100 |
commit | d0b6f217ae4743ee0caa44b90c53e0e8ae2d1e31 (patch) | |
tree | d1bf51e4a0abb7fdb0176cbdea36d12f1a0b3d83 /.github | |
parent | 390b5caaaacc7ba504d87331dad116208d90a6e7 (diff) | |
download | minetest-d0b6f217ae4743ee0caa44b90c53e0e8ae2d1e31.tar.xz |
Add option to exclude Development Test from release packages (#13081)
* `INSTALL_DEVTEST` is the option name
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/macos.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index edc6630c0..ba5a2d91e 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -46,7 +46,8 @@ jobs: -DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 \ -DCMAKE_FIND_FRAMEWORK=LAST \ -DCMAKE_INSTALL_PREFIX=../build/macos/ \ - -DRUN_IN_PLACE=FALSE -DENABLE_GETTEXT=TRUE + -DRUN_IN_PLACE=FALSE -DENABLE_GETTEXT=TRUE \ + -DINSTALL_DEVTEST=TRUE make -j2 make install |