Skip to content

KUBE-1098: update packages #174

KUBE-1098: update packages

KUBE-1098: update packages #174

Workflow file for this run

name: Pull request build
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
- ready_for_review
jobs:
build:
name: Build
outputs:
image-tag: ${{ env.VERSION_TAG }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go 1.23
uses: actions/setup-go@v5
with:
go-version: '1.23.5'
- name: Cache Go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-build-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-build-
- name: Get version
run: echo "VERSION_TAG=$(git describe --tags)" >> $GITHUB_ENV
- name: Build Go binary amd64
run: go build -ldflags "-s -w -X main.GitCommit=$GITHUB_SHA -X main.GitRef=$GITHUB_REF -X main.Version=${VERSION_TAG}" -o bin/castai-cluster-controller-amd64 .
env:
GOOS: linux
GOARCH: amd64
CGO_ENABLED: 0
- name: Build Go binary arm64
run: go build -ldflags "-s -w -X main.GitCommit=$GITHUB_SHA -X main.GitRef=$GITHUB_REF -X main.Version=${VERSION_TAG}" -o bin/castai-cluster-controller-arm64 .
env:
GOOS: linux
GOARCH: arm64
CGO_ENABLED: 0
- name: Test
run: go test -short -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 GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push pr
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/arm64,linux/amd64
push: true
tags: ghcr.io/castai/cluster-controller:${{ env.VERSION_TAG }}
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@0.28.0
with:
image-ref: ghcr.io/castai/cluster-controller:${{ env.VERSION_TAG }}
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH,MEDIUM'
- name: "Run FOSSA Test"
uses: fossas/fossa-action@main # Use a specific version if locking is preferred
with:
api-key: ${{ secrets.FOSSA_API_KEY }}
container: ubuntu:20.04
run-tests: true
e2e-tests:
uses: ./.github/workflows/e2e.yaml
if: github.event.pull_request.draft == false
needs: [build]
with:
image-repository: ghcr.io/castai/cluster-controller
image-tag: ${{ needs.build.outputs.image-tag }}
secrets:
CASTAI_API_TOKEN: ${{ secrets.CASTAI_API_TOKEN }}
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }}