We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 701d0f7 commit c90c4f3Copy full SHA for c90c4f3
.github/workflows/test.yml
@@ -8,7 +8,7 @@ on:
8
jobs:
9
build:
10
name: ${{ matrix.ruby_version }}-${{ matrix.ubuntu_version }}
11
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
12
strategy:
13
matrix:
14
ubuntu_version:
@@ -19,13 +19,16 @@ jobs:
19
- 3.1.6
20
- 3.2.4
21
- 3.3.3
22
+ arch:
23
+ - amd64
24
+ - arm64
25
26
steps:
27
- uses: actions/checkout@v4
28
29
- name: Build image
30
run: |
- 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 }}
32
33
- name: Check image
34
0 commit comments