Skip to content

Commit

Permalink
expand matrix of ruby runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
quinna-h committed Sep 16, 2024
1 parent ea24453 commit 2432259
Showing 1 changed file with 25 additions and 13 deletions.
38 changes: 25 additions & 13 deletions .github/workflows/auto-update-gemfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
version: '2.6'
- name: ruby
version: '2.5'
# - name: jruby
# version: '9.4'
# - name: jruby
# version: '9.3'
# - name: jruby
# version: '9.2'
- name: jruby
version: '9.4'
- name: jruby
version: '9.3'
- name: jruby
version: '9.2'
container:
image: "ghcr.io/datadog/images-rb/engines/${{ matrix.engine.name }}:${{ matrix.engine.version }}"
steps:
Expand Down Expand Up @@ -126,11 +126,23 @@ jobs:
name: 'datadog-gem-ruby-3.4-gha${{ github.run_id }}'
path: gemfiles

- run: git diff

# TODO: add more runtime artifacts here
- name: Download artifacts for JRuby 9.2
uses: actions/download-artifact@v4
with:
name: 'datadog-gem-jruby-9.2-gha${{ github.run_id }}'
path: gemfiles

- name: Download artifacts for JRuby 9.3
uses: actions/download-artifact@v4
with:
name: 'datadog-gem-jruby-9.3-gha${{ github.run_id }}'
path: gemfiles

# - name: Commit files and show diff
# run: |
# git add aggregated/
# git diff --cached
- name: Download artifacts for JRuby 9.4
uses: actions/download-artifact@v4
with:
name: 'datadog-gem-jruby-9.4-gha${{ github.run_id }}'
path: gemfiles

- name: Output Git diff
run: git diff

0 comments on commit 2432259

Please sign in to comment.