update deps

This commit is contained in:
Nikhil Narayana 2020-07-17 21:40:44 -04:00
commit 038b50dfad
No known key found for this signature in database
GPG key ID: E263B4B4644E576B

View file

@ -119,8 +119,6 @@ jobs:
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
submodules: recursive
- name: 'Fetch Git Tags' - name: 'Fetch Git Tags'
if: success() if: success()
run: | run: |
@ -157,8 +155,6 @@ jobs:
libsoundtouch-dev \ libsoundtouch-dev \
libswscale-dev \ libswscale-dev \
libusb-1.0-0-dev \ libusb-1.0-0-dev \
libwxbase3.0-dev \
libwxgtk3.0-dev \
libxext-dev \ libxext-dev \
libxrandr-dev \ libxrandr-dev \
portaudio19-dev \ portaudio19-dev \
@ -176,11 +172,13 @@ jobs:
if: success() if: success()
working-directory: ${{ github.workspace }} working-directory: ${{ github.workspace }}
run: | run: |
chmod +x ./build-linux.sh
./build-linux.sh ./build-linux.sh
- name: "Build Netplay AppImage" - name: "Build Netplay AppImage"
if: success() if: success()
working-directory: ${{ github.workspace }} working-directory: ${{ github.workspace }}
run: | run: |
chmod +x ./build-appimage.sh
./build-appimage.sh ./build-appimage.sh
- name: "Package Netplay" - name: "Package Netplay"
if: success() if: success()
@ -202,8 +200,6 @@ jobs:
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
submodules: recursive
- name: 'Fetch Git Tags' - name: 'Fetch Git Tags'
if: success() if: success()
run: | run: |
@ -240,8 +236,6 @@ jobs:
libsoundtouch-dev \ libsoundtouch-dev \
libswscale-dev \ libswscale-dev \
libusb-1.0-0-dev \ libusb-1.0-0-dev \
libwxbase3.0-dev \
libwxgtk3.0-dev \
libxext-dev \ libxext-dev \
libxrandr-dev \ libxrandr-dev \
portaudio19-dev \ portaudio19-dev \
@ -259,11 +253,13 @@ jobs:
if: success() if: success()
working-directory: ${{ github.workspace }} working-directory: ${{ github.workspace }}
run: | run: |
chmod +x ./build-linux.sh
./build-linux.sh playback ./build-linux.sh playback
- name: "Build Playback AppImage" - name: "Build Playback AppImage"
if: success() if: success()
working-directory: ${{ github.workspace }} working-directory: ${{ github.workspace }}
run: | run: |
chmod +x ./build-appimage.sh
./build-appimage.sh playback ./build-appimage.sh playback
- name: "Package Playback" - name: "Package Playback"
if: success() if: success()
@ -285,8 +281,6 @@ jobs:
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
submodules: recursive
- name: 'Fetch Git Tags' - name: 'Fetch Git Tags'
if: success() if: success()
run: | run: |
@ -320,24 +314,8 @@ jobs:
pkgconfig \ pkgconfig \
libao \ libao \
sound-touch \ sound-touch \
hidapi hidapi \
- name: "Cache wxWidgets 3.1.3" qt
uses: actions/cache@v1
env:
cache-name: "wxWidgets-3.1.3-macOS"
with:
path: ./wxWidgets-3.1.3/build
key: "wxWidgets-3.1.3-macOS-Catalina"
- name: "Install wxWidgets 3.1.3"
if: success()
shell: bash
working-directory: ${{ github.workspace }}
run: |
cd wxWidgets-3.1.3
cd build
../configure
make -j7
sudo make install
- name: "Build Netplay" - name: "Build Netplay"
if: success() if: success()
shell: bash shell: bash
@ -345,7 +323,7 @@ jobs:
run: | run: |
mkdir build mkdir build
cd build cd build
cmake .. cmake -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 ..
make -j7 make -j7
- name: "Package Netplay" - name: "Package Netplay"
if: success() if: success()
@ -371,8 +349,6 @@ jobs:
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
submodules: recursive
- name: 'Fetch Git Tags' - name: 'Fetch Git Tags'
if: success() if: success()
run: | run: |
@ -406,24 +382,8 @@ jobs:
pkgconfig \ pkgconfig \
libao \ libao \
sound-touch \ sound-touch \
hidapi hidapi \
- name: "Cache wxWidgets 3.1.3" qt
uses: actions/cache@v1
env:
cache-name: "wxWidgets-3.1.3-macOS"
with:
path: ./wxWidgets-3.1.3/build
key: "wxWidgets-3.1.3-macOS-Catalina"
- name: "Install wxWidgets 3.1.3"
if: success()
shell: bash
working-directory: ${{ github.workspace }}
run: |
cd wxWidgets-3.1.3
cd build
../configure
make -j7
sudo make install
- name: "Build Playback" - name: "Build Playback"
if: success() if: success()
shell: bash shell: bash
@ -431,7 +391,7 @@ jobs:
run: | run: |
mkdir build mkdir build
cd build cd build
cmake -DIS_PLAYBACK=true .. cmake -DIS_PLAYBACK=true -DQt5_DIR=$(brew --prefix qt)/lib/cmake/Qt5 ..
make -j7 make -j7
- name: "Package Playback" - name: "Package Playback"
if: success() if: success()