SQL language support #2
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: Linux | |
on: [push] | |
jobs: | |
verify-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup libraries and tools | |
run: | | |
sudo apt update | |
sudo apt install xorg-dev libegl-dev libgl1-mesa-dev x11proto-core-dev libx11-dev | |
sudo apt install ninja-build | |
- name: Configure | |
run: cmake -B build -G "Ninja Multi-Config" -S example | |
- name: Build | |
run: cmake --build build --config Release |