This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
more filepicker stuff #54
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] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Build | |
id: test | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
usesh: true | |
prepare: | | |
pkg install -y cmake libX11 libXi libXrandr libXinerama libXcursor libglvnd alsa-lib | |
run: | | |
cmake -B build | |
cmake --build build --config Release | |
- name: Release | |
uses: actions/upload-artifact@v2 | |
with: | |
name: FreeBSDRelease | |
path: build/ |