File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
.github/actions/flutter_integration_test Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 79
79
with :
80
80
name : ${{ github.run_id }}-${{ inputs.os }}
81
81
82
+ - name : Configure Windows long paths
83
+ if : runner.os == 'Windows'
84
+ shell : pwsh
85
+ run : |
86
+ New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
87
+ git config --system core.longpaths true
88
+
89
+ - name : Create short path directory for Windows
90
+ if : runner.os == 'Windows'
91
+ shell : cmd
92
+ run : |
93
+ mkdir C:\af
94
+ mklink /J "D:\a\AppFlowy\AppFlowy" "C:\af"
95
+
82
96
- name : Uncompressed appflowy_flutter
83
- run : tar --dereference - xf appflowy_flutter.tar.gz
97
+ run : tar -xf appflowy_flutter.tar.gz
84
98
shell : bash
85
99
86
100
- name : Run Flutter integration tests
You can’t perform that action at this time.
0 commit comments