Skip to content

run beaker in debug mode #10

run beaker in debug mode

run beaker in debug mode #10

Workflow file for this run

---
name: Build images
on:
pull_request: {}
push:
branches:
- master
jobs:
setup_matrix:
runs-on: ubuntu-latest
name: Setup Matrix
outputs:
puppet_unit_test_matrix: ${{ steps.get-outputs.outputs.puppet_unit_test_matrix }}
puppet_beaker_test_matrix: ${{ steps.get-outputs.outputs.puppet_beaker_test_matrix }}
steps:
- uses: actions/checkout@v4
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
- name: Setup Test Matrix
id: get-outputs
run: bundle exec metadata2gha --domain example.com --pidfile-workaround
beaker:
defaults:

Check failure on line 29 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build images

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 29, Col: 14): Unexpected value ''
needs: setup_matrix
runs-on: ubuntu-latest
env:
BUNDLE_WITHOUT: release
BEAKER_HYPERVISOR: docker
BEAKER_DEBUG: true
strategy:
fail-fast: false
matrix:
include: ${{fromJson(needs.setup_matrix.outputs.puppet_beaker_test_matrix)}}
name: "${{ matrix.name }}"
steps:
- uses: actions/checkout@v4
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
cache-version: ${{ inputs.cache-version }}
working-directory: ${{ inputs.working-directory }}
- name: Run beaker
run: bundle exec beaker --provision --hosts --preserve-hosts always
env: ${{ matrix.env }}
- name: List images
run: docker images
- name: List container
run: docker ps