Compare commits

...

3 commits

Author SHA1 Message Date
55d29e84dc
Fix dependency installation in workflow
All checks were successful
Build / build-and-test (pull_request) Successful in 27s
2024-08-14 21:19:35 -06:00
54a9b3e71b
fixup! Add Forgejo workflow
Some checks failed
Build / build-and-test (pull_request) Failing after 7s
2024-08-14 19:25:14 -06:00
2b322cbef2
Add Forgejo workflow
Some checks failed
Build / build-and-test (pull_request) Failing after 10s
2024-08-14 19:10:56 -06:00

View file

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