Костадин Дамянов
Костадин Дамянов
It would be really nice if this library really supports speed.
It looks like the error comes from the android build system so this is not directly related to the plugin. Can you post the full build log?
I think there is no such feature currently.
@aloisdeniel Sorry to bother you, but can we have your input on this PR?
What is the proper way to run the analyzer with a command? I have the following pipeline: ```yaml steps: - task: FlutterInstall@0 inputs: channel: 'stable' version: 'custom' customVersion: 'v1.12.13+hotfix.9' -...
Same issue :( Is there any workaround for this? Using different ubuntu version or flutter version?
@aloisdeniel I think I found the problem. Flutter uses `ZIP` files for Mac and Windows releases and `Tar` files for linux. [This](https://github.com/aloisdeniel/vsts-flutter-tasks/blob/4f252baada040c803c6b41c1501e5042b05c72c0/tasks/install/index.ts#L90) has to be changed to use [tool.extractTar()](https://github.com/microsoft/azure-pipelines-tool-lib/blob/c460d77d4b8c5a91da128b05e1b01babcdafb616/tool.ts#L443) for...
So I opened pull request #57 that should fix the issue. I did not test it though.
From the extract7z() implementation: ```typescript if (process.platform != 'win32') { throw new Error('extract7z() not supported on current OS'); } ``` So this will work only on windows hosts, unfortunately (if...
@hey24sheep @Vayth OK, it looks like [someone just removed](https://github.com/microsoft/azure-pipelines-tool-lib/commit/e49dba27aa56622b6aa3118d95be48bd78ba0c0d) the `z` flag from the tool lib function so `extractTar()` should work now with the `tar.xz` file.