Skip to content

Andres workflow

Andres workflow #11

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
env:
BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPAL_RPC_CREDENTIALS: ${{ secrets.OPAL_RPC_CREDENTIALS }}
jobs:
build-all:
runs-on:
- self-hosted
- "arch=x64"
- "engflow-container-image=docker://645088952840.dkr.ecr.eu-west-1.amazonaws.com/engflow-ci/debian12-dind-x64@sha256:763903935682de148b4e09fe1d7ef3bbc4ec829d59c3f41cb9519984639eaa06"
- "engflow-pool=ci_sysbox_x64"
- "engflow-runtime=sysbox-runc"
- "engflow-runner-id=${{ github.repository_id }}_engflowapis-ci_${{ github.run_id }}_${{ github.run_number }}_${{ github.run_attempt }}"
- "os=linux"
steps:
- uses: actions/checkout@v4
- name: Set up authentication
shell: bash
run: cp infra/bazelrc .bazelrc.user
- name: Build api
run: bazel build //engflow/api/...
- name: Build auth
run: bazel build //engflow/auth/...
- name: Build cluster
run: bazel build //engflow/cluster/...
- name: Build eventstore
run: bazel build //engflow/eventstore/...
- name: Build iam
run: bazel build //engflow/iam/...
- name: Build notification
run: bazel build //engflow/notification/...
- name: Build resourceusage
run: bazel build //engflow/resourceusage/...
- name: Build resultstore
run: bazel build //engflow/resultstore/...
- name: Build type
run: bazel build //engflow/type/...