diff --git a/.cirrus.yml b/.cirrus.yml index 07350cc5..d1c85894 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -28,4 +28,4 @@ Dinit with hardening CI_task: Build_script: gmake Print dinit executive file architecture_script: file ./src/dinit Unit tests_script: gmake check - Integration tests_script: gmake check-igr DEBUG=1 + Integration tests_script: gmake check-igr diff --git a/.github/workflows/regular_ci.yml b/.github/workflows/regular_ci.yml index b5f9fd73..9b63875e 100644 --- a/.github/workflows/regular_ci.yml +++ b/.github/workflows/regular_ci.yml @@ -67,7 +67,7 @@ jobs: - name: Unit tests run: make check - name: Integration tests - run: make check-igr DEBUG=1 + run: make check-igr - name: Upload igr-tests output file(s) on failure uses: actions/upload-artifact@v4.3.2 if: failure() @@ -99,7 +99,7 @@ jobs: - name: Unit tests run: make check - name: Integration tests - run: make check-igr DEBUG=1 + run: make check-igr - name: Upload igr-tests output file(s) on failure uses: actions/upload-artifact@v4.3.2 if: failure() @@ -139,8 +139,8 @@ jobs: file ./src/dinit echo "$(tput bold) ----Unit tests---- :$(tput sgr0) make check" make check - echo "$(tput bold) ----Integration tests---- :$(tput sgr0) make check-igr DEBUG=1" - make check-igr DEBUG=1 + echo "$(tput bold) ----Integration tests---- :$(tput sgr0) make check-igr" + make check-igr - name: Upload igr-tests output file(s) on failure uses: actions/upload-artifact@v4.3.2 if: failure()