temporary PR to help investigate ZONE_NORMAL #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check-cluster-autoscaler-builds | |
on: | |
pull_request: | |
paths: | |
- "cluster-autoscaler/ca.tag" | |
- "cluster-autoscaler/ca.patch" | |
- "cluster-autoscaler/Dockerfile" | |
push: | |
branches: | |
- main | |
paths: | |
- "cluster-autoscaler/ca.tag" | |
- "cluster-autoscaler/ca.patch" | |
- "cluster-autoscaler/Dockerfile" | |
jobs: | |
build-ca: | |
runs-on: [ self-hosted, gen3, small ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: docker/setup-buildx-action@v2 | |
# FIXME: is there a way to use docker/build-push without actually pushing here? It'd be good | |
# to take advantage of all their extra stuff (build caches, etc.) | |
- name: Build cluster-autoscaler | |
run: docker buildx build --build-arg CA_GIT_TAG=$(cat cluster-autoscaler/ca.tag) cluster-autoscaler |