Skip to content

Commit

Permalink
CI: Don't use "DEBUG=1" for igr-tests in workflows
Browse files Browse the repository at this point in the history
Because it does nothing since new igr-runner

Signed-off-by: Mobin Aydinfar <[email protected]>
  • Loading branch information
mobin-2008 committed Sep 16, 2024
1 parent e887166 commit ecd3514
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit ecd3514

Please sign in to comment.