Skip to content

Switch to debian bookworm for build base image #2815

Switch to debian bookworm for build base image

Switch to debian bookworm for build base image #2815

Workflow file for this run

name: olm
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: '1.20'
KIND_IMG_TAG: v1.27.3
permissions: {}
jobs:
main:
name: tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.2
- name: Download binaries
run: |
mkdir -p ${GITHUB_WORKSPACE}/build
echo "${GITHUB_WORKSPACE}/build" >> ${GITHUB_PATH}
make operator-sdk
make opm
- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
with:
go-version: ${{ env.GO_VERSION }}
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y libseccomp-dev libelf-dev libapparmor-dev
sudo hack/install-libbpf.sh
- name: Create and verify bundle
run: |
make verify-bundle
- name: Create and set up K8s KinD Cluster
run: |
./hack/kind-with-registry.sh
- name: Run the tests
run: ./hack/ci/e2e-olm.sh