-
Notifications
You must be signed in to change notification settings - Fork 18
161 lines (143 loc) · 4.97 KB
/
images.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
name: Publish container image
on:
push:
branches:
- main
jobs:
push_to_registries_bot:
name: Push bot container image to GHCR
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/setup-buildx-action@v3
- name: Extract metadata (tags, labels) for gotbot image
id: gobot_meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}/instructlab-gobot
- name: Build and push gobot image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
build-args: |
GITHUB_USER=instructlab-bot
GITHUB_TOKEN=${{ secrets.BOT_GITHUB_TOKEN }}
target: gobot
push: true
tags: ${{ steps.gobot_meta.outputs.tags }}
labels: ${{ steps.gobot_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
file: gobot/Containerfile
push_to_registries_serve:
name: Push serve container image to GHCR
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Free disk space
run: |
df -h
sudo docker rmi "$(docker image ls -aq)" >/dev/null 2>&1 || true
sudo rm -rf \
/usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \
/usr/lib/jvm || true
sudo apt install aptitude -y >/dev/null 2>&1
sudo aptitude purge '~n ^mysql' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^dotnet' -f -y >/dev/null 2>&1
sudo apt-get autoremove -y >/dev/null 2>&1
sudo apt-get autoclean -y >/dev/null 2>&1
df -h
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/setup-buildx-action@v3
- name: Extract metadata (tags, labels) for labserve image
id: labserve_meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}/instructlab-serve
- name: Build and push serve image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
build-args: |
GITHUB_USER=instructlab-bot
target: serve
push: true
tags: ${{ steps.labserve_meta.outputs.tags }}
labels: ${{ steps.labserve_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
file: worker/Containerfile
push_to_registries_serve_base:
name: Push serve base container image to GHCR
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Free disk space
run: |
df -h
sudo docker rmi "$(docker image ls -aq)" >/dev/null 2>&1 || true
sudo rm -rf \
/usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \
/usr/lib/jvm || true
sudo apt install aptitude -y >/dev/null 2>&1
sudo aptitude purge '~n ^mysql' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^dotnet' -f -y >/dev/null 2>&1
sudo apt-get autoremove -y >/dev/null 2>&1
sudo apt-get autoclean -y >/dev/null 2>&1
df -h
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/setup-buildx-action@v3
- name: Extract metadata (tags, labels) for labserve image
id: labserve_base_meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}/instructlab-serve-base
- name: Build and push serve image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
build-args: |
GITHUB_USER=instructlab-bot
target: serve
push: true
tags: ${{ steps.labserve_base_meta.outputs.tags }}
labels: ${{ steps.labserve_base_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
file: worker/Containerfile.servebase