Skip to content

Commit ef7a6fd

Browse files
authored
Merge pull request #123 from marcone/main
Make automated build workflow build more targets
2 parents 489ba42 + 86eadd4 commit ef7a6fd

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/ccpp.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
name: C/C++ CI
22

3-
on: [push]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
9-
108
steps:
119
- uses: actions/checkout@v1
1210
- name: make
13-
run: make
11+
run: |
12+
make
13+
make clean
14+
make DEBUG=1
15+
sudo apt-get install libsystemd-dev
16+
make clean
17+
make SYSTEMD=1
18+
make clean
19+
make USE_SYSLOG=1
20+
make clean
21+
make OLD_FUNCTIONFS_DESCRIPTORS=1

0 commit comments

Comments
 (0)