Skip to content

Commit 609c9e1

Browse files
committed
Add GitHub Actions workflow for libppd
1 parent 21ce1f1 commit 609c9e1

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/build.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build libppd
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Install dependencies
16+
run: |
17+
sudo apt-get update
18+
sudo apt-get install -y \
19+
build-essential \
20+
autoconf \
21+
automake \
22+
autopoint \
23+
gettext \
24+
libtool \
25+
pkg-config \
26+
libcups2-dev \
27+
libcupsfilters-dev \
28+
ghostscript \
29+
poppler-utils \
30+
mupdf-tools
31+
32+
- name: Build project
33+
run: |
34+
./autogen.sh
35+
./configure
36+
make
37+
38+
- name: Run tests
39+
run: make check

0 commit comments

Comments
 (0)