-
Notifications
You must be signed in to change notification settings - Fork 86
99 lines (95 loc) · 2.91 KB
/
publish.yml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Publish container image
on:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
publish_image:
name: Publish container image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: hermitcore
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build demo
run: cargo build -Zbuild-std=std,panic_abort --target x86_64-unknown-hermit --no-default-features -p rusty_demo --release
- name: Copy demo out of target dir
run: cp target/x86_64-unknown-hermit/release/rusty_demo .
- name: Download loader
uses: dsaltares/[email protected]
with:
repo: hermit-os/loader
file: hermit-loader-x86_64
- name: Create dockerfile for rusty_demo
run: |
cat << END > Dockerfile
FROM scratch
COPY hermit-loader-x86_64 hermit/hermit-loader
COPY rusty_demo hermit/rusty_demo
CMD ["/hermit/rusty_demo"]
END
- name: Build and push container
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/hermit-os/rusty_demo:latest
- name: Build httpd
run: cargo build -Zbuild-std=std,panic_abort --target x86_64-unknown-hermit -p httpd --features dhcpv4 --release
- name: Copy httpd out of target dir
run: cp target/x86_64-unknown-hermit/release/httpd .
- name: Create dockerfile for httpd
run: |
cat << END > Dockerfile
FROM scratch
COPY hermit-loader-x86_64 hermit/hermit-loader
COPY httpd hermit/httpd
CMD ["/hermit/httpd"]
END
- name: Build and push container
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/hermit-os/httpd:latest
- name: Build webserver
run: cargo build -Zbuild-std=std,panic_abort --target x86_64-unknown-hermit -p webserver --features dhcpv4 --release
- name: Copy webserver out of target dir
run: cp target/x86_64-unknown-hermit/release/webserver .
- name: Create static website
run: |
mkdir -p root
cat << END > root/index.html
<!DOCTYPE html>
<html>
<head>
<title>Hermit-OS</title>
</head>
<body>
<p>Hello from Hermit-OS! 🦀</p>
</body>
</html>
END
- name: Create dockerfile for webserver
run: |
cat << END > Dockerfile
FROM scratch
COPY root root
COPY hermit-loader-x86_64 hermit/hermit-loader
COPY webserver hermit/webserver
CMD ["/hermit/webserver"]
END
- name: Build and push container
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/hermit-os/webserver:latest