Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions .github/workflows/beep-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,14 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: create local.mk
- name: apt-get
run: |
echo "prefix = ${PWD}/_root" > local.mk
sudo apt-get update
sudo apt-get install -y automake autoconf
- name: autoreconf
run: autoreconf -vif && nl -ba configure | grep -A100 -B100 'fcntl\.h'
- name: configure
run: ./configure --prefix="${PWD}/_root"
- name: make
run: make
- name: 'beep --help'
Expand All @@ -26,7 +31,9 @@ jobs:
diff -u beep-usage.txt beep-usage.from--help
- name: 'make check'
run: make check
- name: 'make install-nobuild'
run: make install-nobuild
- name: 'make install'
run: make install
- name: 'list installed files'
run: (cd "$PWD/_root" && ls -l $(find . -type f | env LC_ALL=C sort) | nl)
- name: 'make distcheck'
run: make distcheck
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,28 @@
*.lst
*.gcc-lst
/beep.1
/compile-check

# The compressed man page
/beep.1.gz

# autoconf related stuff
/aclocal.m4
/auto-aux/
/auto-config.h.in
/autom4te.cache/
/config.log
/config.status
/configure
/Makefile.in
/GNUmakefile

# Built stuff
/dox/
/html/
/*.html
/__tmp/
/stamp-h
/tarball-dist/
/tarball-git-dist/
/beep-*.tar.gz
Expand Down
1 change: 1 addition & 0 deletions Doxyfile.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Doxyfile 1.9.1
# @configure_input@

# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
Expand Down
Loading