Revert "Merge branch 'master' into d3d9" #55
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: Ubuntu Latest Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install Dependencies | |
run: >- | |
bash installdeps | |
- name: Configure | |
run: >- | |
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug | |
- name: Build | |
run: ninja -C build | |
- name: Install | |
run: sudo ninja -C build install |