File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 build :
10- name : ${{ matrix.ruby_version }}-${{ matrix.ubuntu_version }}
11- runs-on : ubuntu-latest
10+ name : ${{ matrix.ruby_version }}-${{ matrix.ubuntu_version }} ${{ matrix.arch }}
11+ runs-on : ${{ matrix.arch == 'arm64' && ' ubuntu-24.04-arm' || 'ubuntu-24.04' }}
1212 strategy :
1313 matrix :
1414 ubuntu_version :
@@ -19,13 +19,16 @@ jobs:
1919 - 3.1.6
2020 - 3.2.4
2121 - 3.3.3
22+ arch :
23+ - amd64
24+ - arm64
2225
2326 steps :
2427 - uses : actions/checkout@v4
2528
2629 - name : Build image
2730 run : |
28- rake docker:build arch=amd64 ruby_version=${{ matrix.ruby_version }} ubuntu_version=${{ matrix.ubuntu_version }}
31+ rake docker:build arch=${{ matrix.arch }} ruby_version=${{ matrix.ruby_version }} ubuntu_version=${{ matrix.ubuntu_version }}
2932
3033 - name : Check image
3134 run : |
You can’t perform that action at this time.
0 commit comments