-
Notifications
You must be signed in to change notification settings - Fork 5
119 lines (115 loc) · 4.12 KB
/
docker-build.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
name: Docker Image CI
on:
push:
tags: ["*"]
workflow_dispatch:
schedule: [cron: '0 0 1 * *']
jobs:
docker-base-build:
runs-on: ubuntu-latest
strategy:
matrix:
variant: ["debian:bullseye-slim", "debian:bookworm-slim", "ubuntu:focal", "ubuntu:jammy"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set tags
run: |
echo "Setting tags..."
if [ "${{ matrix.variant }}" = "debian:bookworm-slim" ]; then
echo "LATEST_TAG=${{ github.actor }}/vscode-latex:latest" >> $GITHUB_ENV
echo "Added latest tag"
fi
echo "TAG_NAME=$(echo "${{ matrix.variant }}" | awk -F: '{print $NF}' | cut -d "-" -f1)" >> $GITHUB_ENV
docker system prune --all --force
- name: Build and push
uses: docker/build-push-action@v5.3.0
with:
build-args: VARIANT=${{ matrix.variant }}
push: true
sbom: true
context: build
file: build/Dockerfile.base
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: |
${{ github.actor }}/vscode-latex:${{ env.TAG_NAME }}-${{ github.sha }}
${{ github.actor }}/vscode-latex:${{ env.TAG_NAME }}
${{ env.LATEST_TAG }}
docker-lang-build:
runs-on: ubuntu-latest
needs: docker-base-build
strategy:
matrix:
variant: ["debian:bookworm-slim", "ubuntu:jammy"]
lang: [all, arabic, chinese, cjk, cyrillic, czechslovak, english, european, french, german, greek, italian, japanese, korean, other, polish, portuguese, spanish]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set tags
run: |
echo "Setting tags..."
echo "TAG_NAME=$(echo "${{ matrix.variant }}" | awk -F: '{print $NF}' | cut -d "-" -f1)" >> $GITHUB_ENV
docker system prune --all --force
- name: Build and push
uses: docker/build-push-action@v5.3.0
with:
build-args: |
VARIANT=${{ env.TAG_NAME }}
LANG=${{ matrix.lang }}
push: true
sbom: true
context: build
file: build/Dockerfile.language
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: ${{ github.actor }}/vscode-latex:${{ env.TAG_NAME }}-lang-${{ matrix.lang }}
docker-full-build:
runs-on: ubuntu-latest
needs: docker-base-build
strategy:
matrix:
variant: ["debian:bookworm-slim", "ubuntu:jammy"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set tags
run: |
echo "Setting tags..."
echo "TAG_NAME=$(echo "${{ matrix.variant }}" | awk -F: '{print $NF}' | cut -d "-" -f1)" >> $GITHUB_ENV
docker system prune --all --force
- name: Build and push
uses: docker/build-push-action@v5.3.0
with:
build-args: VARIANT=${{ env.TAG_NAME }}
push: true
sbom: true
context: build
file: build/Dockerfile.full
platforms: linux/amd64,linux/arm64
tags: ${{ github.actor }}/vscode-latex:${{ env.TAG_NAME }}-full