Skip to content

Commit

Permalink
workflows added --output-on-failure for ctest
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Aug 27, 2022
1 parent 224958b commit a979468
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-cl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ jobs:

- name: TinyORM execute ctest 🔥
working-directory: ../TinyORM-builds-cmake/build-clang-cl-cmake-debug
run: ctest
run: ctest --output-on-failure
env:
DB_MYSQL_CHARSET: utf8mb4
DB_MYSQL_COLLATION: utf8mb4_0900_ai_ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:

- name: TinyORM execute ctest 🔥
working-directory: ../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-cmake-debug
run: ctest
run: ctest --output-on-failure
env:
DB_MYSQL_CHARSET: utf8mb4
DB_MYSQL_COLLATION: utf8mb4_0900_ai_ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:

- name: TinyORM execute ctest 🔥
working-directory: ../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-cmake-debug
run: ctest
run: ctest --output-on-failure
env:
DB_MYSQL_CHARSET: utf8mb4
DB_MYSQL_COLLATION: utf8mb4_0900_ai_ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
- name: TinyORM execute ctest 🔥
shell: msys2 {0}
working-directory: ../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-cmake-debug
run: ctest
run: ctest --output-on-failure
env:
DB_MYSQL_CHARSET: utf8mb4
DB_MYSQL_COLLATION: utf8mb4_0900_ai_ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc2019-qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ jobs:

- name: TinyORM execute ctest 🔥
working-directory: ../TinyORM-builds-cmake/build-msvc-cmake-debug
run: ctest
run: ctest --output-on-failure
env:
DB_MYSQL_CHARSET: utf8mb4
DB_MYSQL_COLLATION: utf8mb4_0900_ai_ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc2022-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ jobs:

- name: TinyORM execute ctest 🔥
working-directory: ../TinyORM-builds-cmake/build-msvc-cmake-debug
run: ctest
run: ctest --output-on-failure
env:
DB_MYSQL_CHARSET: utf8mb4
DB_MYSQL_COLLATION: utf8mb4_0900_ai_ci
Expand Down

0 comments on commit a979468

Please sign in to comment.