@@ -51,68 +51,68 @@ jobs:
51
51
path : .
52
52
53
53
- name : Checkout
54
- uses : actions/checkout@v4
55
- with :
56
- repository : google/mozc
57
- submodules : ' recursive'
54
+ uses : actions/checkout@v4
55
+ with :
56
+ repository : google/mozc
57
+ submodules : ' recursive'
58
58
59
59
- name : Set up pip
60
- shell : cmd
61
- working-directory : .\src
62
- run : |
63
- python -m pip install six requests
60
+ shell : cmd
61
+ working-directory : .\src
62
+ run : |
63
+ python -m pip install six requests
64
64
65
65
- name : Set up pip
66
- shell : powershell
67
- run : |
68
- Get-Content mozcdic-ut.txt >> .\src\data\dictionary_oss\dictionary00.txt
66
+ shell : powershell
67
+ run : |
68
+ Get-Content mozcdic-ut.txt >> .\src\data\dictionary_oss\dictionary00.txt
69
69
70
70
71
71
- name : Try to restore update_deps cache
72
- uses : actions/cache@v4
73
- with :
74
- path : src/third_party_cache
75
- key : update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
72
+ uses : actions/cache@v4
73
+ with :
74
+ path : src/third_party_cache
75
+ key : update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
76
76
77
77
- name : Install Dependencies
78
- shell : cmd
79
- working-directory : .\src
80
- # This command uses src/third_party_cache as the download cache.
81
- run : |
82
- python build_tools/update_deps.py
78
+ shell : cmd
79
+ working-directory : .\src
80
+ # This command uses src/third_party_cache as the download cache.
81
+ run : |
82
+ python build_tools/update_deps.py
83
83
84
84
85
85
- name : Biuld Qt
86
- shell : cmd
87
- working-directory : .\src
88
- run : |
89
- python build_tools/build_qt.py --release --confirm_license
86
+ shell : cmd
87
+ working-directory : .\src
88
+ run : |
89
+ python build_tools/build_qt.py --release --confirm_license
90
90
91
91
- name : Delete Qt src to save disk space
92
- shell : cmd
93
- working-directory : .\src
94
- run : |
95
- rmdir third_party\qt_src /s /q
92
+ shell : cmd
93
+ working-directory : .\src
94
+ run : |
95
+ rmdir third_party\qt_src /s /q
96
96
97
97
- name : gyp
98
- shell : cmd
99
- working-directory : .\src
100
- run : |
101
- python build_mozc.py gyp
98
+ shell : cmd
99
+ working-directory : .\src
100
+ run : |
101
+ python build_mozc.py gyp
102
102
103
103
- name : build package
104
- shell : cmd
105
- working-directory : .\src
106
- run : |
107
- python build_mozc.py build -c Release package
104
+ shell : cmd
105
+ working-directory : .\src
106
+ run : |
107
+ python build_mozc.py build -c Release package
108
108
109
109
110
110
- name : upload Mozc64.msi
111
- uses : actions/upload-artifact@v4
112
- with :
113
- name : Mozc64.msi
114
- path : src/out_win/Release/Mozc64.msi
115
- if-no-files-found : warn
111
+ uses : actions/upload-artifact@v4
112
+ with :
113
+ name : Mozc64.msi
114
+ path : src/out_win/Release/Mozc64.msi
115
+ if-no-files-found : warn
116
116
test :
117
117
# https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md
118
118
runs-on : windows-2022
0 commit comments