From 0d0791c2592036e6d47b389b9c45718990933d48 Mon Sep 17 00:00:00 2001 From: Robert Waffen Date: Tue, 4 Feb 2025 17:11:42 +0100 Subject: [PATCH] feat: add info output --- .github/workflows/build_container.yml | 14 ++++++++++++++ .github/workflows/ci.yaml | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/.github/workflows/build_container.yml b/.github/workflows/build_container.yml index 2bc7b90..352ce25 100644 --- a/.github/workflows/build_container.yml +++ b/.github/workflows/build_container.yml @@ -153,6 +153,20 @@ jobs: docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 \ docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86_64 + info-output: + runs-on: ubuntu-24.04 + needs: + - setup-matrix + - build-ARM-container + strategy: + matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} + container: ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 + steps: + - name: bundle info + run: | + bundle info + bundle outdated + update-dockerhub-description: runs-on: ubuntu-latest needs: diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2cd5419..98d05fe 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -122,6 +122,20 @@ jobs: docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile r10k:syntax docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile r10k:dependencies + info-output: + runs-on: ubuntu-24.04 + needs: + - setup-matrix + - build-ARM-container + strategy: + matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} + container: ci/voxbox:${{ matrix.rubygem_puppet }} + steps: + - name: bundle info + run: | + bundle info + bundle outdated + tests: needs: - build-x86-container