From 906c59a655188050de275cb8a84f21414ef8f81a Mon Sep 17 00:00:00 2001 From: Francois Ferrand Date: Thu, 11 Apr 2024 01:16:18 +0200 Subject: [PATCH] debug --- .github/workflows/actions.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index baa3c19..9c73611 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -49,13 +49,13 @@ jobs: test: needs: build - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Install dependencies run: | - OS=xUbuntu_20.04 + OS=xUbuntu_22.04 CRIO_VERSION=1.21 KUBIC_REPO=https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable sudo tee /etc/apt/sources.list.d/kubic-libcontainers.list <<< "deb $KUBIC_REPO/$OS/ /" @@ -86,6 +86,14 @@ jobs: - name: Unit testing with bash_unit run: | + containerd --version || true + ctr --version || true + sudo ctr plugin ls + sudo cat /etc/containerd/config.toml + + sleep 5 + sudo ctr plugin ls + export IMAGE="${{ env.DOCKER_IMAGE }}:${{ github.sha }}" sudo FORCE_COLOR=true ./bash_unit test.sh # TODO: parse individual tests results (in TAP format)