From 83630015b9abb32fdaf92fb52cef376da664d9e7 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 31 Dec 2019 09:19:43 -0600 Subject: [PATCH] github-ci: make distcheck on centos 7 build Tests distcheck on a build from a distribution archive. --- .github/workflows/builds.yml | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 4655280627..9a875c87aa 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -143,20 +143,14 @@ jobs: uses: actions/download-artifact@v1 with: name: dist - - run: mkdir suricata - - working-directory: suricata - run: tar zxvf ../dist/suricata-*.tar.gz --strip-components=1 - - working-directory: suricata - run: ./configure - - working-directory: suricata - name: Check that Rust is using --frozen + - run: tar zxvf ./dist/suricata-*.tar.gz --strip-components=1 + - run: ./configure + - name: Check that Rust is using --frozen run: grep -q '^FROZEN' rust/Makefile - - working-directory: suricata - run: make -j2 - - working-directory: suricata - run: make install - - working-directory: suricata - run: make install-conf + - run: make -j2 + - run: make install + - run: make install-conf + - run: make distcheck centos-6: name: CentOS 6