Compare commits

...

2 Commits

Author SHA1 Message Date
c5cd5a2d13
trying to fix gitlab-ci variables bug
Some checks failed
Codacy Scan / Codacy Security Scan (push) Failing after 1s
Build WHY2-chat / test-why2 (./out/why2-chat-client, ./configure.sh, ubuntu-latest, ./out/why2-chat-server) (push) Successful in 2m31s
Test Project / test-project (./configure.sh, gdb -ex "run" -ex "quit" --batch, ubuntu-latest, ./test) (push) Successful in 2m28s
Test WHY2-core / test-why2 (why2, ./configure.sh, gdb -ex "run" -ex "quit" --batch, ubuntu-latest, ./out/why2-core-test, valgrind --leak-check=full --show-leak-kinds=reachable --track-origins=yes -s) (push) Successful in 3m4s
Test WHY2-logger / test-why2 (why2-logger, ./configure.sh, gdb -ex "run" -ex "quit" --batch, ubuntu-latest, ./out/why2-logger-test, valgrind --leak-check=full --show-leak-kinds=reachable --track-origins=yes -s) (push) Successful in 3m16s
2025-01-09 19:26:52 +01:00
9b9ac32a70
only running codacy workflow on github 2025-01-09 19:20:37 +01:00
2 changed files with 5 additions and 4 deletions

View File

@ -27,6 +27,7 @@ permissions:
jobs:
codacy-security-scan:
if: github.repository == "ENGO150/WHY2"
permissions:
contents: read
security-events: write

View File

@ -51,8 +51,8 @@ why2-core-test:
- sudo $CONFIGURE # Preparation
- make install BYPASS_CHECK=true # Install WHY2
- make test_core # Build WHY2 Test
- $GDB $CORE_OUTPUT # Test Lib
- $GDB $CORE_APP # Test App
- ${GDB} $CORE_OUTPUT # Test Lib
- ${GDB} $CORE_APP # Test App
- $VALGRIND $CORE_OUTPUT # Test Lib by Valgrind
why2-logger-test:
@ -65,8 +65,8 @@ why2-logger-test:
- sudo $CONFIGURE # Preparation
- make install BYPASS_CHECK=true # Install WHY2
- make test_logger # Build WHY2 Test
- $GDB $LOGGER_OUTPUT # Test Lib
- $GDB $LOGGER_APP # Test App
- ${GDB} $LOGGER_OUTPUT # Test Lib
- ${GDB} $LOGGER_APP # Test App
- $VALGRIND $LOGGER_OUTPUT # Test Lib by Valgrind
why2-project: