Skip to content

Commit

Permalink
feat: add info output
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaffen committed Feb 4, 2025
1 parent d3ce79d commit 0d0791c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0d0791c

Please sign in to comment.