Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add firecracker loader to the deployments #524

Merged
merged 1 commit into from
Jan 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,15 @@ jobs:
- name: Copy demo out of target dir
run: cp target/x86_64-unknown-hermit/release/rusty_demo .
- name: Download loader
run: gh release download --repo hermit-os/loader --pattern hermit-loader-x86_64
run: |
gh release download --repo hermit-os/loader --pattern hermit-loader-x86_64
gh release download --repo hermit-os/loader --pattern hermit-loader-x86_64-fc
- name: Create dockerfile for rusty_demo
run: |
cat << END > Dockerfile
FROM scratch
COPY hermit-loader-x86_64 hermit/hermit-loader
COPY hermit-loader-x86_64-fc hermit/hermit-loader-fc
COPY rusty_demo hermit/rusty_demo
CMD ["/hermit/rusty_demo"]
END
Expand All @@ -53,6 +56,7 @@ jobs:
cat << END > Dockerfile
FROM scratch
COPY hermit-loader-x86_64 hermit/hermit-loader
COPY hermit-loader-x86_64-fc hermit/hermit-loader-fc
COPY httpd hermit/httpd
CMD ["/hermit/httpd"]
END
Expand Down Expand Up @@ -86,6 +90,7 @@ jobs:
FROM scratch
COPY root root
COPY hermit-loader-x86_64 hermit/hermit-loader
COPY hermit-loader-x86_64-fc hermit/hermit-loader-fc
COPY webserver hermit/webserver
CMD ["/hermit/webserver"]
END
Expand Down