Skip to content

Commit

Permalink
workflows used cmake.exe --build .
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Jun 12, 2024
1 parent 5615ff1 commit 0ea726e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/clang-cl-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -717,8 +717,9 @@ jobs:
-D BUILD_DRIVERS:BOOL=OFF
- name: TinyORM cmake build ✨ (${{ env.TinyORMBuildName }})
working-directory: ${{ env.TinyORMBuildTree }}
run: |
cmake.exe --build $env:TinyORMBuildTree --target all --parallel $env:TinyParallel
cmake.exe --build . --target all --parallel $env:TinyParallel
- name: Ccache print statistics
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/linux-qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,9 @@ jobs:
-D BUILD_DRIVERS:BOOL=OFF
- name: TinyORM cmake build ✨ (${{ env.TinyORMBuildName }})
working-directory: ${{ env.TinyORMBuildTree }}
run: |
cmake --build "$TinyORMBuildTree" --target all --parallel $TinyParallel
cmake --build . --target all --parallel $TinyParallel
- name: Ccache print statistics
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/linux-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -662,8 +662,9 @@ jobs:
-D BUILD_DRIVERS:BOOL=OFF
- name: TinyORM cmake build ✨ (${{ env.TinyORMBuildName }})
working-directory: ${{ env.TinyORMBuildTree }}
run: |
cmake --build "$TinyORMBuildTree" --target all --parallel $TinyParallel
cmake --build . --target all --parallel $TinyParallel
- name: Ccache print statistics
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/msvc2019-qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,9 @@ jobs:
-D BUILD_DRIVERS:BOOL=OFF
- name: TinyORM cmake build ✨ (${{ env.TinyORMBuildName }})
working-directory: ${{ env.TinyORMBuildTree }}
run: |
cmake.exe --build $env:TinyORMBuildTree --target all --parallel $env:TinyParallel
cmake.exe --build . --target all --parallel $env:TinyParallel
- name: Ccache print statistics
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/msvc2022-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -719,8 +719,9 @@ jobs:
-D BUILD_DRIVERS:BOOL=OFF
- name: TinyORM cmake build ✨ (${{ env.TinyORMBuildName }})
working-directory: ${{ env.TinyORMBuildTree }}
run: |
cmake.exe --build $env:TinyORMBuildTree --target all --parallel $env:TinyParallel
cmake.exe --build . --target all --parallel $env:TinyParallel
- name: Ccache print statistics
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/msys2-ucrt64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -409,8 +409,9 @@ jobs:
- name: TinyORM cmake build ✨ (${{ env.TinyORMBuildName }})
shell: msys2 {0}
working-directory: ${{ env.TinyORMBuildTree }}
run: |
cmake.exe --build $env:TinyORMBuildTree --target all --parallel $TinyParallel
cmake.exe --build . --target all --parallel $TinyParallel
- name: Ccache print statistics
shell: msys2 {0}
Expand Down

0 comments on commit 0ea726e

Please sign in to comment.