OLD | NEW |
1 <!--- | 1 <!--- |
2 Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 2 Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file |
3 for details. All rights reserved. Use of this source code is governed by a | 3 for details. All rights reserved. Use of this source code is governed by a |
4 BSD-style license that can be found in the LICENSE.md file. | 4 BSD-style license that can be found in the LICENSE.md file. |
5 --> | 5 --> |
6 | 6 |
7 We use a patched version of the Dart VM at the moment, because | 7 We use a patched version of the Dart VM at the moment, because |
8 * Testing is much faster using vfork() | 8 * Testing is much faster using vfork() |
9 * The persistent process / daemon uses Unix Domain Sockets | 9 * The persistent process / daemon uses Unix Domain Sockets |
10 | 10 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 out/ReleaseX64/dart-sdk/bin/dart | 85 out/ReleaseX64/dart-sdk/bin/dart |
86 | 86 |
87 # On Linux - arm | 87 # On Linux - arm |
88 chmod +x out/ReleaseXARM/dart | 88 chmod +x out/ReleaseXARM/dart |
89 upload_to_google_storage.py -b dart-dependencies-fletch \ | 89 upload_to_google_storage.py -b dart-dependencies-fletch \ |
90 out/ReleaseXARM/dart | 90 out/ReleaseXARM/dart |
91 arm-linux-gnueabihf-strip out/ReleaseXARM/dart | 91 arm-linux-gnueabihf-strip out/ReleaseXARM/dart |
92 ``` | 92 ``` |
93 | 93 |
94 The sha1 files need to be checked into the repository at | 94 The sha1 files need to be checked into the repository at |
95 * `third_party/bin/{linux,mac}/...` | 95 * `third_party/bin/linux/dart.sha1` |
96 * `tools/testing/bin/{linux,mac}/...` | 96 * `third_party/bin/linux/dart-arm.sha1` |
| 97 * `third_party/bin/mac/dart.sha1` |
| 98 * `tools/testing/bin/linux/dart.sha1` |
| 99 * `tools/testing/bin/linux/dart-arm.sha1` |
| 100 * `tools/testing/bin/mac/dart.sha1` |
97 | 101 |
98 It is highly recommended to test that everything worked, by | 102 It is highly recommended to test that everything worked, by |
99 * ensuring only sha1 files have been changed | 103 * ensuring only sha1 files have been changed |
100 * deleting the binaries | 104 * deleting the binaries |
101 * re-running `gclient runhooks` to download new binaries | 105 * re-running `gclient runhooks` to download new binaries |
102 * building & running ./tools/test.py | 106 * building & running ./tools/test.py |
OLD | NEW |