-
Notifications
You must be signed in to change notification settings - Fork 21
47 lines (43 loc) · 1.55 KB
/
check-ca-builds.yaml
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
name: check-cluster-autoscaler-builds
on:
pull_request:
paths:
- "cluster-autoscaler/ca.tag"
- "cluster-autoscaler/ca.patch"
- "cluster-autoscaler/Dockerfile"
- ".github/workflows/check-ca-builds.yaml"
push:
branches:
- main
paths:
- "cluster-autoscaler/ca.tag"
- "cluster-autoscaler/ca.patch"
- "cluster-autoscaler/Dockerfile"
- ".github/workflows/check-ca-builds.yaml"
jobs:
build-ca:
strategy:
fail-fast: false
matrix:
arch: [ amd64, arm64 ]
runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', matrix.arch == 'arm64' && 'large-arm64' || 'large')) }}
steps:
- uses: actions/checkout@v4
- name: set custom docker config directory
uses: neondatabase/dev-actions/set-docker-config-dir@6094485bf440001c94a94a3f9e221e81ff6b6193
- uses: docker/setup-buildx-action@v3
- name: Login to Docker cache registry
uses: docker/login-action@v3
with:
registry: cache.neon.build
username: ${{ secrets.NEON_CI_DOCKERCACHE_USERNAME }}
password: ${{ secrets.NEON_CI_DOCKERCACHE_PASSWORD }}
- name: Build cluster-autoscaler image
uses: docker/build-push-action@v6
with:
context: cluster-autoscaler
platforms: ${{format('linux/{0}', matrix.arch)}}
push: false
target: ${{format('cluster_autoscaler_{0}', matrix.arch)}}
file: cluster-autoscaler/Dockerfile
cache-from: type=registry,ref=cache.neon.build/cluster-autoscaler-neonvm:cache