Implement new touch controls and theming control strips #926
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 FreeBSD | |
on: [push,pull_request] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Configure & Build 🔧 | |
id: test | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
envs: 'MYTOKEN MYTOKEN2' | |
usesh: true | |
prepare: | | |
pkg install -y cmake libX11 libXi libXrandr libXinerama libXcursor libglvnd alsa-lib | |
run: | | |
mkdir build | |
cd build | |
cmake .. && cmake --build . | |
- name: GH Release 🚀 | |
# You may pin to the exact commit or the version. | |
uses: actions/upload-artifact@v2 | |
with: | |
name: FreeBSDRelease | |
path: build/bin/ | |