run beaker in debug mode #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build images | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.2" | |
bundler-cache: true | |
- name: Run beaker | |
run: bundle exec beaker --provision --hosts almalinux8-64{hostname=almalinux8-64-puppet7.example.com} --dry-run --preserve-hosts always | |
env: | |
BUNDLE_WITHOUT: release | |
BEAKER_HYPERVISOR: docker | |
BEAKER_DEBUG: true | |
- name: List images | |
run: docker images | |
- name: List container | |
run: docker ps |