This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
More stuff #57
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 Linux | |
on: [push] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libx11-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev | |
sudo apt-get install -y libgl1-mesa-dev libegl1-mesa-dev libasound2-dev libdbus-1-dev | |
- name: Build | |
run: | | |
cmake -B build | |
cmake --build build --config Release | |
- name: Release | |
uses: actions/upload-artifact@v2 | |
with: | |
name: LinuxRelease | |
path: build/ |