From ae8917110b478a8b4680930f58af7c4f3848edfc Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Tue, 23 Mar 2021 16:18:04 +0000 Subject: [PATCH] github: Run the cgclear functional test last Run the cgclear functional test last since it is destructive to the cgroup hierarchy. Note that this test is automatically skipped by 'make check'. Signed-off-by: Tom Hromatka --- .github/workflows/continuous-integration.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e70b170d..2045b358 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -64,7 +64,11 @@ jobs: - name: Initialize the directory uses: ./.github/actions/setup-libcgroup - name: Run functional tests - run: make check + run: | + make check + pushd tests/ftests + ./028-cgclear-basic_cgclear.py --no-container -l 10 -L ftests-28.log + popd - name: Display test logs if: ${{ always() }} run: | @@ -109,7 +113,11 @@ jobs: - name: Initialize the directory uses: ./.github/actions/setup-libcgroup - name: Run functional tests - run: make check + run: | + make check + pushd tests/ftests + ./028-cgclear-basic_cgclear.py --no-container -l 10 -L ftests-28.log + popd - name: Display test logs if: ${{ always() }} run: | -- 2.47.2