From: Tobias Heider Date: Mon, 4 Sep 2023 13:53:10 +0000 (+0200) Subject: ci: execute tests after successful build (#243) X-Git-Tag: v10.0.3~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da3c493d2c54982fa401cfc5f16b03b6e6e4232f;p=thirdparty%2Fdhcpcd.git ci: execute tests after successful build (#243) --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index caacf7b5..60cb8225 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,6 +25,9 @@ jobs: - name: Build run: make + - name: Tests + run: make tests + openbsd: runs-on: macos-12 steps: @@ -46,6 +49,12 @@ jobs: echo "building" make + - name: Tests + run: | + ulimit -n 1024 + cd build + make tests + freebsd: runs-on: macos-12 steps: @@ -67,6 +76,11 @@ jobs: echo "building" make + - name: Tests + run: | + cd build + make tests + netbsd: runs-on: macos-12 steps: @@ -84,3 +98,8 @@ jobs: ./configure --prefix=/usr echo "building" make + + - name: Tests + run: | + cd build + make tests