feat: arm64 tests #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ARM Linux Simulation | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
simulate-arm-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Test ARM64 | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./dev/dockerfile-arm64-github-actions | |
platforms: linux/arm64 | |
push: false | |
tags: ghcr.io/langgenius/dify-sandbox:arm64-test |