Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Don't use "DEBUG=1" for igr-tests in workflows #377

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 4 additions & 4 deletions .github/workflows/regular_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
if: failure()
Expand Down Expand Up @@ -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/[email protected]
if: failure()
Expand Down Expand Up @@ -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/[email protected]
if: failure()
Expand Down