diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5482d1eb..8b269bd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,21 @@ jobs: - name: Distcheck run: make distcheck DISTCHECK_CONFIGURE_FLAGS=--enable-werror + build-ubuntu-latest-hwloc: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install Dependencies + run: sudo apt-get install libncursesw5-dev libhwloc-dev + - name: Bootstrap + run: ./autogen.sh + - name: Configure + run: ./configure --enable-werror --enable-hwloc + - name: Build + run: make + - name: Distcheck + run: make distcheck DISTCHECK_CONFIGURE_FLAGS='--enable-werror --enable-hwloc' + whitespace_check: runs-on: ubuntu-latest steps: diff --git a/Makefile.am b/Makefile.am index 4dc638fd..d455b4d4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -203,7 +203,8 @@ endif SUFFIXES = .h BUILT_SOURCES = $(myhtopheaders) $(myhtopplatheaders) -htop_SOURCES = $(myhtopheaders) $(myhtopplatheaders) $(myhtopsources) $(myhtopplatsources) config.h +htop_SOURCES = $(myhtopheaders) $(myhtopplatheaders) $(myhtopsources) $(myhtopplatsources) +nodist_htop_SOURCES = config.h .PHONY: htop-headers clean-htop-headers