-
Notifications
You must be signed in to change notification settings - Fork 21
54 lines (49 loc) · 1.73 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
48
49
50
51
52
53
54
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: ./.github/actions/set-docker-config-dir
- 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: get CA base git tag
id: get-ca-tag
run: |
echo "tag=$(cat cluster-autoscaler/ca.tag)" | tee -a $GITHUB_OUTPUT
- 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
build-args: |
CA_GIT_TAG=${{ steps.get-ca-tag.outputs.tag }}