Skip to content

Commit

Permalink
Merge pull request #123 from marcone/main
Browse files Browse the repository at this point in the history
Make automated build workflow build more targets
  • Loading branch information
jfdelnero authored Nov 19, 2024
2 parents 489ba42 + 86eadd4 commit ef7a6fd
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
name: C/C++ CI

on: [push]
on: [push, pull_request, workflow_dispatch]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: make
run: make
run: |
make
make clean
make DEBUG=1
sudo apt-get install libsystemd-dev
make clean
make SYSTEMD=1
make clean
make USE_SYSLOG=1
make clean
make OLD_FUNCTIONFS_DESCRIPTORS=1

0 comments on commit ef7a6fd

Please sign in to comment.