Skip to content

Commit b090185

Browse files
committed
Update firmware-buildpack-builder dependency
1 parent e9b7157 commit b090185

File tree

2 files changed

+48
-2
lines changed

2 files changed

+48
-2
lines changed

docs/upd-build-env.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
Updating Build Environment
2+
==========================
3+
4+
Generating the build system environment requires several moving parts. There are multiple repositories that are linked together in order to create a buildpack system.
5+
6+
Repositories
7+
------------
8+
9+
There are four main repositories involved in generating the environment.
10+
11+
- [`buildpack-hal`](https://github.com/particle-iot/buildpack-hal/): Contains the `Dockerfile` that specifies the contents of the environment, which is consumed by CI, CD, WebIDE and the Workbench.
12+
- [`device-os`](https://github.com/particle-iot/device-os/): Contains the `.workbench/manifest.json` file, which specifies the necessary components.
13+
- [`firmware-buildpack-builder`](https://github.com/particle-iot/firmware-buildpack-builder/): Contains the Dockerfile fragments, which are used during CI to validate builds and create the images consumed by the WebIDE compiler.
14+
- [`workbench`](https://github.com/particle-iot/workbench/): Contains the dependency installer script that consumes the manifest file from the `device-os` repository.
15+
16+
Relationship Mapping
17+
--------------------
18+
19+
Examples
20+
--------
21+
22+
### Upgrading the `gcc-arm` compiler
23+
24+
#### Create the dependency bundle
25+
26+
1. Download the dependency for your platform
27+
1. [Create a bundle](https://github.com/particle-iot/workbench#development)
28+
1. Generate a SHA-256 hash for the bundle
29+
1. Upload the bundle to Amazon S3
30+
31+
#### Update `device-os`
32+
33+
1. Update `<particle-iot/device-os>/.workbench/manifest.json` to reflect the new dependency
34+
1. Update the `BUILDPACK_FILES` variable to target new `branch` or `tag` in `<particle-iot/device-os>/scripts/fetch-buildpack`
35+
1. Create a PR against `particle-iot/device-os`
36+
37+
#### Update `buildpack-hal`
38+
39+
1. Update the `GITHUB_BRANCH` in the `build-and-push` script, to identify which `device-os` branch will provide the updated version of the manifest file
40+
1. Update the `COPY` command in the `Dockerfile` to copy the new dependency from the `worker` stage to the `buildpack-hal` stage
41+
1. Tag the commit with a version to be used. (i.e. `0.1.0`)
42+
1. Create a PR against `particle-iot/buildpack-hal`
43+
44+
#### Update `firmware-buildpack-builder`
45+
46+
1. Update `BUILDPACK_VERSION` in `<particle-iot/device-os>/scripts/constants` to reflect the name of the tag provided to `buildpack-hal`
47+
1. Create a PR against `firmware-buildpack-builder`

scripts/fetch-buildpack

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
BUILDPACK_FILES=$(mkdir buildpack && wget https://api.github.com/repos/particle-iot/firmware-buildpack-builder/tarball/0.0.8 -O - | tar -xvz -C buildpack --strip-components 1)
1+
BUILDPACK_FILES=$(mkdir buildpack && wget https://api.github.com/repos/particle-iot/firmware-buildpack-builder/tarball/ch39834/workbench-installer -O - | tar -xvz -C buildpack --strip-components 1)
22
SHORT_REF=$(echo "$BUILDPACK_FILES" | head -n1 | cut -d '/' -f 1 | rev | cut -d '-' -f 1 | rev)
33
mkdir buildpack/.git
44
echo "${SHORT_REF}" > buildpack/.git/short_ref
5-

0 commit comments

Comments
 (0)