lhotari commented on PR #22755:
URL: https://github.com/apache/pulsar/pull/22755#issuecomment-2151670014
Once Arm runners are available (by the end of the year), we could use this
type of syntax to choose the runner in the matrix.
```yaml
pulsar-java-test-image:
name: Build Pulsar java-test-image docker image for ${{ matrix.platform
}}
runs-on: ${{ matrix.runs-on }}
timeout-minutes: 60
needs: ['preconditions', 'build-and-license-check']
if: ${{ needs.preconditions.outputs.docs_only != 'true'}}
strategy:
fail-fast: false
matrix:
include:
- platform: linux/amd64
runs-on: ubuntu-22.04
- platform: linux/arm64
runs-on: arm64-ubuntu-22.04
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]