workflows added .exe extension

This commit is contained in:
silverqx
2023-01-24 15:50:51 +01:00
parent 9dc5ddd4eb
commit e16ef13a68
4 changed files with 16 additions and 15 deletions
+6 -5
View File
@@ -532,7 +532,7 @@ jobs:
- name: CMake print version
run: |
cmake --version
cmake.exe --version
- name: TinyORM create build folder (clang-cl-cmake-debug)
run: |
@@ -540,7 +540,7 @@ jobs:
- name: TinyORM cmake configure (clang-cl-cmake-debug)
run: >-
cmake
cmake.exe
-S .
-B ../TinyORM-builds-cmake/build-clang-cl-cmake-debug
-G Ninja
@@ -558,8 +558,9 @@ jobs:
-D TOM_EXAMPLE:BOOL=ON
- name: TinyORM cmake build ✨ (clang-cl-cmake-debug)
run: |
cmake --build ../TinyORM-builds-cmake/build-clang-cl-cmake-debug --target all --parallel 2
run: >-
cmake.exe --build ../TinyORM-builds-cmake/build-clang-cl-cmake-debug --target all
--parallel 2
- name: Ccache statistics
run: |
@@ -595,7 +596,7 @@ jobs:
- name: TinyORM execute ctest 🔥
working-directory: ../TinyORM-builds-cmake/build-clang-cl-cmake-debug
run: |
ctest --output-on-failure
ctest.exe --output-on-failure
env:
DB_MYSQL_CHARSET: ${{ secrets.DB_MYSQL_CHARSET }}
DB_MYSQL_COLLATION: ${{ secrets.DB_MYSQL_COLLATION }}
+3 -3
View File
@@ -386,7 +386,7 @@ jobs:
- name: CMake print version
run: |
cmake --version
cmake.exe --version
- name: TinyORM create build folder (msvc-cmake-debug)
run: |
@@ -412,7 +412,7 @@ jobs:
- name: TinyORM cmake build ✨ (msvc-cmake-debug)
run: |
cmake --build ../TinyORM-builds-cmake/build-msvc-cmake-debug --target all --parallel 2
cmake.exe --build ../TinyORM-builds-cmake/build-msvc-cmake-debug --target all --parallel 2
- name: Ccache statistics
run: |
@@ -444,7 +444,7 @@ jobs:
- name: TinyORM execute ctest 🔥
working-directory: ../TinyORM-builds-cmake/build-msvc-cmake-debug
run: |
ctest --output-on-failure
ctest.exe --output-on-failure
env:
DB_MYSQL_CHARSET: ${{ secrets.DB_MYSQL_CHARSET }}
DB_MYSQL_COLLATION: ${{ secrets.DB_MYSQL_57_COLLATION }}
+3 -3
View File
@@ -521,7 +521,7 @@ jobs:
- name: CMake print version
run: |
cmake --version
cmake.exe --version
- name: TinyORM create build folder (msvc-cmake-debug)
run: |
@@ -547,7 +547,7 @@ jobs:
- name: TinyORM cmake build ✨ (msvc-cmake-debug)
run: |
cmake --build ../TinyORM-builds-cmake/build-msvc-cmake-debug --target all --parallel 2
cmake.exe --build ../TinyORM-builds-cmake/build-msvc-cmake-debug --target all --parallel 2
- name: Ccache statistics
run: |
@@ -582,7 +582,7 @@ jobs:
- name: TinyORM execute ctest 🔥
working-directory: ../TinyORM-builds-cmake/build-msvc-cmake-debug
run: |
ctest --output-on-failure
ctest.exe --output-on-failure
env:
DB_MYSQL_CHARSET: ${{ secrets.DB_MYSQL_CHARSET }}
DB_MYSQL_COLLATION: ${{ secrets.DB_MYSQL_COLLATION }}
+4 -4
View File
@@ -323,7 +323,7 @@ jobs:
- name: CMake print version
shell: msys2 {0}
run: |
cmake --version
cmake.exe --version
- name: TinyORM create build folder (${{ matrix.compiler.key }}-${{ matrix.qt.key }}-cmake-debug)
run: >-
@@ -333,7 +333,7 @@ jobs:
- name: TinyORM cmake configure (${{ matrix.compiler.key }}-${{ matrix.qt.key }}-cmake-debug)
shell: msys2 {0}
run: >-
cmake
cmake.exe
-S .
-B ../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-${{ matrix.qt.key }}-cmake-debug
-G Ninja
@@ -353,7 +353,7 @@ jobs:
- name: TinyORM cmake build ✨ (${{ matrix.compiler.key }}-${{ matrix.qt.key }}-cmake-debug)
shell: msys2 {0}
run: >-
cmake
cmake.exe
--build ../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-${{ matrix.qt.key }}-cmake-debug
--target all --parallel ${{ matrix.compiler.key == 'gcc' && 1 || 2 }}
@@ -395,7 +395,7 @@ jobs:
working-directory: >-
../TinyORM-builds-cmake/build-${{ matrix.compiler.key }}-${{ matrix.qt.key }}-cmake-debug
run: |
ctest --output-on-failure
ctest.exe --output-on-failure
env:
DB_MYSQL_CHARSET: ${{ secrets.DB_MYSQL_CHARSET }}
DB_MYSQL_COLLATION: ${{ secrets.DB_MYSQL_COLLATION }}