-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprebuilts
61 lines (52 loc) · 2.55 KB
/
prebuilts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<!--
Configuration of prebuilt packages needed by the stem.
The CIPD version hashes in this manifest are updated automatically by Fuchsia Global Integration bots.
To manually fetch packages after local edits to this file, please regenerate
the corresponding lock files first by running:
`//integration/update-lockfiles.sh`
Then fetch the packages:
`jiri fetch-packages -local-manifest=true`
-->
<imports>
<localimport file="toolchain"/>
</imports>
<packages>
<!--
************************************************************
Third-party tools and data used to build and test.
************************************************************
-->
<!-- cargo-outdated, used for rolling external rust deps -->
<package name="fuchsia/third_party/rust_cargo_outdated/${platform}"
version="git_revision:45db3a99f4d249e15f96ce8efb775ac2ecf6eefd"
platforms="linux-amd64,mac-amd64,mac-arm64"
path="prebuilt/third_party/rust_cargo_outdated/{{.OS}}-{{.Arch}}"/>
<!-- QEMU
Recipe: https://fuchsia.googlesource.com/infra/recipes/+/refs/heads/main/recipes/contrib/qemu.py
Builders: https://ci.chromium.org/p/fuchsia/builders/ci/qemu-linux-arm64
https://ci.chromium.org/p/fuchsia/builders/ci/qemu-linux-x64
https://ci.chromium.org/p/fuchsia/builders/ci/qemu-mac-arm64
https://ci.chromium.org/p/fuchsia/builders/ci/qemu-mac-x64
-->
<package name="fuchsia/third_party/qemu/${platform}"
version="git_revision:ae35f033b874c627d81d51070187fbf55f0bf1a7"
platforms="linux-amd64,linux-arm64,mac-amd64,mac-arm64"
path="prebuilt/third_party/qemu/{{.OS}}-{{.Arch}}"/>
<!-- SHAC static analysis tooling -->
<package name="fuchsia/shac/${platform}"
path="prebuilt/tools/shac"
version="git_revision:bf297ac0d953130343d4be68ddec06ac3b1897c2"
platforms="linux-amd64,linux-arm64,mac-amd64,mac-arm64"/>
<!-- keep-sorted tool -->
<package name="fuchsia/third_party/keep-sorted/${platform}"
path="prebuilt/third_party/keep-sorted/{{.OS}}-{{.Arch}}"
version="version:[email protected]"
platforms="linux-amd64,linux-arm64,mac-amd64,mac-arm64"/>
<!-- Alpine Linux image for testing on x64 -->
<package name="fuchsia/starnix/alpine-image-amd64"
path="prebuilt/starnix/alpine-image-amd64"
version="version:1"/>
</packages>
</manifest>