Skip to content

Commit c29bf3c

Browse files
authored
Merge pull request #524 from hermit-os/stlankes-patch-1
add firecracker loader to the deployments
2 parents 062da84 + 3b0cedd commit c29bf3c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/publish.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,15 @@ jobs:
2929
- name: Copy demo out of target dir
3030
run: cp target/x86_64-unknown-hermit/release/rusty_demo .
3131
- name: Download loader
32-
run: gh release download --repo hermit-os/loader --pattern hermit-loader-x86_64
32+
run: |
33+
gh release download --repo hermit-os/loader --pattern hermit-loader-x86_64
34+
gh release download --repo hermit-os/loader --pattern hermit-loader-x86_64-fc
3335
- name: Create dockerfile for rusty_demo
3436
run: |
3537
cat << END > Dockerfile
3638
FROM scratch
3739
COPY hermit-loader-x86_64 hermit/hermit-loader
40+
COPY hermit-loader-x86_64-fc hermit/hermit-loader-fc
3841
COPY rusty_demo hermit/rusty_demo
3942
CMD ["/hermit/rusty_demo"]
4043
END
@@ -53,6 +56,7 @@ jobs:
5356
cat << END > Dockerfile
5457
FROM scratch
5558
COPY hermit-loader-x86_64 hermit/hermit-loader
59+
COPY hermit-loader-x86_64-fc hermit/hermit-loader-fc
5660
COPY httpd hermit/httpd
5761
CMD ["/hermit/httpd"]
5862
END
@@ -86,6 +90,7 @@ jobs:
8690
FROM scratch
8791
COPY root root
8892
COPY hermit-loader-x86_64 hermit/hermit-loader
93+
COPY hermit-loader-x86_64-fc hermit/hermit-loader-fc
8994
COPY webserver hermit/webserver
9095
CMD ["/hermit/webserver"]
9196
END

0 commit comments

Comments
 (0)