Skip to content

Merge pull request #43 from castai/fix-makefile-phony-target #91

Merge pull request #43 from castai/fix-makefile-phony-target

Merge pull request #43 from castai/fix-makefile-phony-target #91

Workflow file for this run

name: Build
on:
push:
branches:
- main
release:
types:
- published
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go 1.20
uses: actions/setup-go@v4
with:
go-version: '1.20.4'
- name: Install dependencies
run: |
go install go.opentelemetry.io/collector/cmd/builder@latest
go install github.com/open-telemetry/opentelemetry-collector-contrib/cmd/mdatagen@latest
- name: Get release tag
if: github.event_name == 'release'
run: echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Prepare release
run: builder --skip-compilation --config builder-config.yaml
- name: Build Go binary amd64
run: cd castai-collector && go build -ldflags "-s -w -X main.GitCommit=$GITHUB_SHA -X main.GitRef=$GITHUB_REF -X main.Version=${RELEASE_TAG:-commit-$GITHUB_SHA}" -o castai-collector-amd64
env:
GOOS: linux
GOARCH: amd64
CGO_ENABLED: 0
- name: Build Go binary arm64
run: cd castai-collector && go build -ldflags "-s -w -X main.GitCommit=$GITHUB_SHA -X main.GitRef=$GITHUB_REF -X main.Version=${RELEASE_TAG:-commit-$GITHUB_SHA}" -o castai-collector-arm64
env:
GOOS: linux
GOARCH: arm64
CGO_ENABLED: 0
- name: Test
run: cd auditlogsreceiver && go test -race ./...
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Google Artifact Registry
uses: docker/login-action@v2
with:
registry: us-docker.pkg.dev
username: _json_key
password: ${{ secrets.ARTIFACT_BUILDER_JSON_KEY }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
if: ${{ github.event_name == 'pull_request' }} || ${{ github.event_name == 'release' }}
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push pr
if: ${{ github.event_name == 'pull_request' }}
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/arm64,linux/amd64
push: ${{ github.event_name == 'pull_request' }}
tags: ghcr.io/castai/audit-logs-receiver:${{ github.sha }}
- name: Build and push main
if: github.event_name != 'release'
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/arm64,linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: us-docker.pkg.dev/castai-hub/library/audit-logs-receiver:${{ github.sha }}
- name: Build and push release
if: github.event_name == 'release'
uses: docker/build-push-action@v4
with:
context: .
push: true
platforms: linux/arm64,linux/amd64
tags: |
us-docker.pkg.dev/castai-hub/library/audit-logs-receiver:${{ env.RELEASE_TAG }}
us-docker.pkg.dev/castai-hub/library/audit-logs-receiver:latest
- name: Docker pull for fossa main
if: github.event_name == 'release'
run: docker pull us-docker.pkg.dev/castai-hub/library/audit-logs-receiver:${{ env.RELEASE_TAG }}
- name: FOSSA scan docker image
if: github.event_name == 'release'
continue-on-error: true
uses: fossas/fossa-action@v1
with:
api-key: ${{ secrets.FOSSA_API_KEY }}
container: us-docker.pkg.dev/castai-hub/library/audit-logs-receiver:${{ env.RELEASE_TAG }}