no nogui for macOS

This commit is contained in:
Nikhil Narayana 2020-07-18 02:44:45 -04:00
commit 9ae05ea2dc
No known key found for this signature in database
GPG key ID: E263B4B4644E576B

View file

@ -302,9 +302,6 @@ jobs:
if: success() if: success()
shell: bash shell: bash
run: | run: |
wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.3/wxWidgets-3.1.3.tar.bz2
tar -xf wxWidgets-3.1.3.tar.bz2
rm wxWidgets-3.1.3.tar.bz2
brew update brew update
brew upgrade cmake brew upgrade cmake
brew install \ brew install \
@ -323,7 +320,7 @@ jobs:
run: | run: |
mkdir build mkdir build
cd build cd build
cmake -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 .. cmake -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 -DENABLE_NOGUI=false ..
make -j7 make -j7
- name: "Package Netplay" - name: "Package Netplay"
if: success() if: success()
@ -370,9 +367,6 @@ jobs:
if: success() if: success()
shell: bash shell: bash
run: | run: |
wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.3/wxWidgets-3.1.3.tar.bz2
tar -xf wxWidgets-3.1.3.tar.bz2
rm wxWidgets-3.1.3.tar.bz2
brew update brew update
brew upgrade cmake brew upgrade cmake
brew install \ brew install \
@ -391,7 +385,7 @@ jobs:
run: | run: |
mkdir build mkdir build
cd build cd build
cmake -DIS_PLAYBACK=true -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 .. cmake -DIS_PLAYBACK=true -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 -DENABLE_NOGUI=false ..
make -j7 make -j7
- name: "Package Playback" - name: "Package Playback"
if: success() if: success()