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
19 changes: 14 additions & 5 deletions .github/workflows/beep-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
pull_request:
branches: [ main, master ]

# Running without pandoc installed.

jobs:
build:

Expand All @@ -15,18 +17,25 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: create local.mk
- name: apt-get install
run: |
echo "prefix = ${PWD}/_root" > local.mk
sudo apt-get update
sudo apt-get install -y automake autoconf
- name: autoreconf
run: autoreconf -vis .
- name: configure
run: ./configure --prefix="${PWD}/_root"
- name: make
run: make
run: N="$(nproc||echo 2)"; make -j$N -l$N
- name: 'beep --help'
run: |
./beep --help > beep-usage.from--help
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
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Files that should not be tracked by Git

# autoreconf
Makefile.in
/aclocal.m4
/auto-aux/
/auto-config.h.in
/autom4te.cache/
/configure

# configure
.deps/
Makefile
/auto-config.h
/config.log
/config.status
/stamp-h1

# The compiled executables
/beep
/*.clang
Expand Down Expand Up @@ -37,6 +53,7 @@
/tarball-git-dist/
/beep-*.tar.gz
/beep-*.tar.xz
/tests/run-tests

# Test results
/tests/*.actual.output.new
Expand Down
458 changes: 286 additions & 172 deletions Doxyfile.in

Large diffs are not rendered by default.

Loading