mirror of
https://github.com/flutter/packages.git
synced 2025-07-01 15:23:25 +08:00
Use fuchsia package URL instead of pkgfs (#44)
This commit is contained in:
@ -1,5 +1,9 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
|
## 0.0.8
|
||||||
|
|
||||||
|
- Use fuchsiapkg URLs to launch test target
|
||||||
|
|
||||||
## 0.0.7
|
## 0.0.7
|
||||||
|
|
||||||
- Set error code in wrapper script
|
- Set error code in wrapper script
|
||||||
|
@ -230,7 +230,10 @@ Future<OperationResult> test(
|
|||||||
final OperationResult testResult = await ssh.runCommand(
|
final OperationResult testResult = await ssh.runCommand(
|
||||||
targetIp,
|
targetIp,
|
||||||
identityFilePath: identityFile,
|
identityFilePath: identityFile,
|
||||||
command: <String>['pkgfs/packages/$target/0/bin/app'],
|
command: <String>[
|
||||||
|
'run',
|
||||||
|
'fuchsia-pkg://fuchsia.com/$target#meta/$target.cmx'
|
||||||
|
],
|
||||||
);
|
);
|
||||||
stdout.writeln('Test results (passed: ${testResult.success}):');
|
stdout.writeln('Test results (passed: ${testResult.success}):');
|
||||||
if (result.info != null) {
|
if (result.info != null) {
|
||||||
|
@ -5,7 +5,7 @@ description: >
|
|||||||
continuous integration/testing infrastructure.
|
continuous integration/testing infrastructure.
|
||||||
author: Flutter Team <flutter-dev@googlegroups.com>
|
author: Flutter Team <flutter-dev@googlegroups.com>
|
||||||
homepage: https://github.com/flutter/packags/tree/master/packages/fuchsia_ctl
|
homepage: https://github.com/flutter/packags/tree/master/packages/fuchsia_ctl
|
||||||
version: 0.0.7
|
version: 0.0.8
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.4.0 <3.0.0"
|
sdk: ">=2.4.0 <3.0.0"
|
||||||
|
Reference in New Issue
Block a user