Skip to content

[DON'T MERGE] debug build time performance #31

[DON'T MERGE] debug build time performance

[DON'T MERGE] debug build time performance #31

Workflow file for this run

name: Docker build
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
timeout-minutes: 30
strategy:
matrix:
ruby_version:
- '3.4.1'
- '3.3.6'
# - '3.3.5'
# - '3.3.4'
# - '3.3.3'
# - '3.3.2'
# - '3.3.1'
# - '3.3.0'
- '3.2.6'
# - '3.2.5'
# - '3.2.4'
# - '3.2.3'
# - '3.2.2'
- '3.1.6'
# - '3.1.5'
# - '3.1.4'
platform:
- { runner: 'linux-arm64-public', image: 'linux/arm64' }
- { runner: 'ubuntu-24.04', image: 'linux/amd64' }
runs-on: ${{ matrix.platform.runner }}
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v6
with:
context: .
platforms: ${{ matrix.platform.image }}
push: false
build-args: |
RUBY_VERSION=${{ matrix.ruby_version }}