Add Forgejo workflow
Some checks failed
Build / build-and-test (pull_request) Failing after 10s

This commit is contained in:
William Brawner 2024-08-14 19:10:56 -06:00
parent aa498f5a8c
commit 2b322cbef2
Signed by: wbrawner
GPG key ID: 8FF12381C6C90D35

View file

@ -0,0 +1,21 @@
name: Build
on: pull_request
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt install cmake \
make \
gcc \
g++ \
autoconf \
libtool \
libcurl4-openssl-dev \
libssl-dev \
libjson-c-dev
- name: Build
run: cmake -DPIHELPER_EXECUTABLE=BOOL:ON -B build