Configuration - add auxiliary building script msvc_build.bat #101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build (Ubuntu 20.04) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
Ubuntu: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Clone Tree | |
uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
g++ \ | |
libgtk2.0-dev \ | |
libopenal-dev \ | |
libgl1-mesa-dev \ | |
libwebp-dev \ | |
libconfig++-dev libconfig-dev \ | |
libxpm-dev \ | |
libavcodec-dev libavdevice-dev libavformat-dev libavutil-dev libswscale-dev | |
- name: Compile | |
run: | | |
./continuousIntegration/build_sview_linux.sh |