Skip to content

Commit f6a0efe

Browse files
authored
Merge pull request #76 from voxpupuli/debug
Output `bundle env` after installing gems
2 parents ee27619 + fcf484b commit f6a0efe

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

.github/workflows/basic.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161
bundler-cache: true
6262
cache-version: ${{ inputs.cache-version }}
6363
working-directory: ${{ inputs.working-directory }}
64+
- name: Display Ruby environment
65+
run: bundle env
6466
- name: Run static validations
6567
run: bundle exec rake validate lint check
6668
- name: Run rake rubocop
@@ -97,6 +99,8 @@ jobs:
9799
bundler-cache: true
98100
cache-version: ${{ inputs.cache-version }}
99101
working-directory: ${{ inputs.working-directory }}
102+
- name: Display Ruby environment
103+
run: bundle env
100104
- name: Run tests
101105
run: bundle exec rake parallel_spec
102106

.github/workflows/beaker.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ jobs:
105105
bundler-cache: true
106106
cache-version: ${{ inputs.cache-version }}
107107
working-directory: ${{ inputs.working-directory }}
108+
- name: Display Ruby environment
109+
run: bundle env
108110
- name: Run static validations
109111
run: bundle exec rake validate lint check
110112
- name: Run rake rubocop
@@ -143,6 +145,8 @@ jobs:
143145
bundler-cache: true
144146
cache-version: ${{ inputs.cache-version }}
145147
working-directory: ${{ inputs.working-directory }}
148+
- name: Display Ruby environment
149+
run: bundle env
146150
- name: Run tests
147151
run: bundle exec rake parallel_spec
148152

@@ -192,6 +196,8 @@ jobs:
192196
cache-version: ${{ inputs.cache-version }}
193197
working-directory: ${{ inputs.working-directory }}
194198
self-hosted: ${{ ! startsWith(inputs.acceptance_runs_on, 'ubuntu-') }}
199+
- name: Display Ruby environment
200+
run: bundle env
195201
- name: Run tests
196202
run: bundle exec rake beaker
197203
env: ${{ matrix.env }}

.github/workflows/prepare_release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,8 @@ jobs:
5454
ruby-version: '3.3'
5555
bundler-cache: true
5656
working-directory: ${{ inputs.working-directory }}
57-
- name: bundle environment
58-
run: |
59-
bundle env
60-
bundle list
57+
- name: Display Ruby environment
58+
run: bundle env
6159
- name: Update metadata.json to new version
6260
run: |
6361
if [[ -n BLACKSMITH_FULL_VERSION ]] ; then

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
ruby-version: '3.2'
4545
bundler-cache: true
4646
working-directory: ${{ inputs.working-directory }}
47+
- name: Display Ruby environment
48+
run: bundle env
4749
- name: Build and Release
4850
env:
4951
# Configure secrets here:

0 commit comments

Comments
 (0)