-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify etc/Calendar_logqt.ini and ci
- Loading branch information
Showing
5 changed files
with
32 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# Author: Kang Lin <[email protected]> | ||
|
||
name: build_macos | ||
|
||
on: | ||
|
@@ -9,7 +11,7 @@ on: | |
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
build_macos: | ||
strategy: | ||
|
@@ -28,6 +30,8 @@ jobs: | |
|
||
- qt_version: 5.12.12 | ||
|
||
# See: https://docs.github.com/zh/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners | ||
# See: https://github.com/actions/runner-images/tree/main | ||
runs-on: macos-13 | ||
|
||
env: | ||
|
@@ -36,7 +40,7 @@ jobs: | |
TOOSL_DIR: ${{github.workspace}}/.cache/tools | ||
INSTALL_DIR: ${{github.workspace}}/.cache/install | ||
qt_modules: qtwebengine ${{matrix.qt_modules}} | ||
VCPKGGITCOMMITID: a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6 | ||
VCPKGGITCOMMITID: 59aeb8fe8fe1c980de6bd5ba634cf21024522d81 | ||
VCPKG_TARGET_TRIPLET: ${{matrix.VCPKG_TARGET_TRIPLET}} | ||
artifact_name: build_macos | ||
Calendar_VERSION: 1.0.20 | ||
|
@@ -84,7 +88,8 @@ jobs: | |
|
||
- name: git clone RabbitCommon | ||
working-directory: ${{env.SOURCE_DIR}} | ||
run: git clone https://github.com/KangLin/RabbitCommon.git | ||
run: | | ||
git clone https://github.com/KangLin/RabbitCommon.git | ||
- name: Compile | ||
working-directory: ${{github.workspace}}/build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule LunarCalendar
updated
3 files
+1 −1 | .github/workflows/android.yml | |
+3 −1 | .github/workflows/macos.yml | |
+4 −4 | .github/workflows/msvc.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
[Log] | ||
;; Log file path. | ||
;Path=log | ||
;; Log file name prefix | ||
Name="yyyy-MM-dd" | ||
Pattern="%{time hh:mm:ss.zzz} %{pid}|%{threadid} %{if-debug}DEBUG%{endif}%{if-info}INFO%{endif}%{if-warning}WARN%{endif}%{if-critical}ERROR%{endif}%{if-fatal}FATALF%{endif} %{category} - %{message}" | ||
; "[%{file}:%{line}, %{function}]" | ||
;; Message format pattern. See: https://doc.qt.io/qt-6/qtlogging.html#qSetMessagePattern | ||
Pattern="[%{time hh:mm:ss.zzz} %{pid}|%{threadid} %{if-debug}D%{endif}%{if-info}I%{endif}%{if-warning}W%{endif}%{if-critical}E%{endif}%{if-fatal}F%{endif}] %{category} - %{message}" | ||
;[%{file}:%{line}, %{function}]" | ||
;; Log file length | ||
;Length=100M | ||
;; Log file count | ||
;Count=10 | ||
;; Write log file interval | ||
;Interval=1 | ||
|
||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
;; Log rules | ||
;; Please see QLoggingCategory documents: https://doc.qt.io/qt-6/qloggingcategory.html#logging-rules | ||
;; Format: | ||
;; <category>[.<type>] = true|false | ||
[Rules] | ||
;*.debug=false | ||
;*=false | ||
*.debug=false | ||
;*.warning=false | ||
|
||
;RabbitCommon*=false | ||
;RabbitCommon.Updater=true |