misc: another pass of renaming Agent to Alloy #5
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 Linux build image | |
on: | |
pull_request: | |
paths: | |
- 'tools/build-image/*' | |
jobs: | |
check-linux-build-image: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Create test Linux build image | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./tools/build-image | |
push: false | |
tags: grafana/alloy-build-image:latest | |
build-args: | | |
GO_RUNTIME=golang:1.22.1-bullseye | |
- name: Create test Linux build image for boring crypto | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./tools/build-image | |
push: false | |
tags: grafana/alloy-build-image:latest | |
build-args: | | |
GO_RUNTIME=mcr.microsoft.com/oss/go/microsoft/golang:1.22.1-bullseye |