Skip to content

Commit 0e6e3b6

Browse files
Add initial project build configuration
Co-authored-by: william1982Byrd-afk <263697744+william1982Byrd-afk@users.noreply.github.com>
1 parent eca9ff0 commit 0e6e3b6

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
name: build (ubuntu-latest)
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: read
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Install dependencies
14+
run: |
15+
sudo apt-get -q update
16+
sudo apt-get -q -y install \
17+
make gcc libssl-dev libcurl4-openssl-dev libexpat-dev \
18+
zlib1g-dev gettext libpcre2-dev
19+
- name: Build
20+
run: make

0 commit comments

Comments
 (0)