-
Notifications
You must be signed in to change notification settings - Fork 817
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check path validity on Windows will validate NTFS permissions for network drives #6209
Conversation
@Alkl58 I had to create a new PR |
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #6209 +/- ##
==========================================
- Coverage 60.77% 60.74% -0.04%
==========================================
Files 145 145
Lines 18836 18841 +5
==========================================
- Hits 11448 11445 -3
- Misses 7388 7396 +8
|
a52fd47
to
bc3beb5
Compare
c54b780
to
c7d28e6
Compare
c7d28e6
to
e30decc
Compare
e30decc
to
aa1b73f
Compare
…work drives. Signed-off-by: Alkl58 <[email protected]>
aa1b73f
to
9c68399
Compare
AppImage file: nextcloud-PR-6209-9c6839969cd77b8fbb5064a5913a22f6d66d0fbe-x86_64.AppImage |
Kudos, SonarCloud Quality Gate passed! |
Builds are failing because of the following reason: [Errno 2] No such file or directory: 'meson'
Traceback (most recent call last):
File "/Users/runner/work/desktop/desktop/macos-64-clang/craft/bin/craft.py", line 417, in <module>
success = main(timer)
File "/Users/runner/work/desktop/desktop/macos-64-clang/craft/bin/craft.py", line 399, in main
if not CraftCommands.run(package, action, tempArgs):
File "/Users/runner/work/desktop/desktop/craft-clone/bin/CraftCommands.py", line 458, in run
if not handlePackage(info, action, directTargets=directTargets):
File "/Users/runner/work/desktop/desktop/craft-clone/bin/CraftCommands.py", line 111, in handlePackage
if not doExec(package, action):
File "/Users/runner/work/desktop/desktop/craft-clone/bin/CraftCommands.py", line 60, in doExec
ret = package.instance.runAction(action)
File "/Users/runner/work/desktop/desktop/craft-clone/bin/Package/PackageBase.py", line 275, in runAction
if not getattr(self, step)():
File "/Users/runner/work/desktop/desktop/craft-clone/bin/BuildSystem/MesonBuildSystem.py", line 127, in configure
if not utils.system(Arguments(["meson", "setup", extra_options, self.configureOptions(defines)])):
File "/Users/runner/work/desktop/desktop/craft-clone/bin/utils.py", line 218, in system
return systemWithoutShell(
File "/Users/runner/work/desktop/desktop/craft-clone/bin/utils.py", line 325, in systemWithoutShell
proc = subprocess.Popen(cmd, **kw)
File "/Users/runner/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/subprocess.py", line 951, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "/Users/runner/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/subprocess.py", line 1837, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'meson' Which is an issue during the dependency install stage - the worker doesn't even reach the building state. |
thanks, we will need to check the Craft part |
not releasing, as it brings issues with VFS placeholders |
Based on #5510
Signed-off-by: Alkl58 [email protected]