File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 21
21
command : |
22
22
curl -s "https://fuchsia.googlesource.com/jiri/+/HEAD/scripts/bootstrap_jiri?format=TEXT" | base64 --decode | bash -s .
23
23
export PATH=$PWD/.jiri_root/bin:$PATH
24
+ jiri import -name=integration flower https://github.com/misttech/integration
24
25
jiri update -v -vv
26
+ git checkout $CIRCLE_BRANCH
25
27
- save_cache :
26
28
name : Save Jiri Package Cache
27
29
key : *jiri-cache
Original file line number Diff line number Diff line change @@ -14,17 +14,23 @@ It's based on Zircon Kernel from Fuchsia/LK project.
14
14
_ NOTE_ : As derived from Fuchsia some scripts/tools are still necessary (plan to remove in the future).
15
15
16
16
```
17
- # Clone the REPO
18
- git clone https://github.com/misttech/mist-os.git
19
-
20
17
# Jiri Bootstrap:
21
18
curl -s "https://fuchsia.googlesource.com/jiri/+/HEAD/scripts/bootstrap_jiri?format=TEXT" | base64 --decode | bash -s mist-os
22
19
23
20
# Update binary/packages dependencies using jiri
24
21
cd mist-os
25
22
export PATH=$PWD/.jiri_root/bin:$PATH
23
+
24
+ # Clone the REPO
25
+ jiri import -name=integration flower https://github.com/misttech/integration
26
26
jiri update
27
27
28
+ # Avoid jiri to update the project(git). It will be usefull for updating packages and deps (submodules).
29
+ jiri project-config --no-update=true --no-rebase=true
30
+
31
+ # Check out the main branch
32
+ git checkout main
33
+
28
34
# Build the kernel
29
35
make it
30
36
You can’t perform that action at this time.
0 commit comments