From 345d415537af1006fb32ff02743d788e64a32ae8 Mon Sep 17 00:00:00 2001 From: Bert Wesarg Date: Tue, 25 Aug 2020 11:38:14 +0200 Subject: Do not include the generated `config.h` header into the package --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 0cc47b69..c76306b8 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 -- cgit v1.2.3 From d64a6a245361b1cce92c77ec677ca8dc1f0fec49 Mon Sep 17 00:00:00 2001 From: Bert Wesarg Date: Tue, 25 Aug 2020 10:52:29 +0200 Subject: CI: Add a HWLOC enabled job --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb7fb0a8..a60d48a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,21 @@ jobs: - name: Distcheck run: make distcheck + 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: -- cgit v1.2.3