1
0
mirror of https://github.com/docker/setup-qemu-action.git synced 2025-05-11 12:42:49 +08:00
Gitea Actions 多平台支持组件 Github 镜像
Go to file
2025-02-02 22:15:08 +09:00
__tests__ rename: local-cache-path -> cache-image-path 2025-02-02 22:13:36 +09:00
.github rename: local-cache-path -> cache-image-path 2025-02-02 22:13:36 +09:00
.yarn/plugins/@yarnpkg chore: add plugin-interactive-tools yarn pkg 2024-05-07 15:54:06 +02:00
dist rename: local-cache-path -> cache-image-path 2025-02-02 22:13:36 +09:00
src rename: local-cache-path -> cache-image-path 2025-02-02 22:13:36 +09:00
.dockerignore update to yarn 3.6.3 2024-05-07 15:53:14 +02:00
.editorconfig Initial commit (docker/build-push-action#87) 2020-08-18 18:19:47 +02:00
.eslintignore chore: update dev dependencies 2023-09-09 18:26:33 +02:00
.eslintrc.json chore: update dev dependencies 2023-09-09 18:26:33 +02:00
.gitattributes update to yarn 3.6.3 2024-05-07 15:53:14 +02:00
.gitignore feat: binfmt image local cached 2025-02-02 21:15:42 +09:00
.prettierignore update to yarn 3.6.3 2024-05-07 15:53:14 +02:00
.prettierrc.json Initial commit (docker/build-push-action#87) 2020-08-18 18:19:47 +02:00
.yarnrc.yml chore: add plugin-interactive-tools yarn pkg 2024-05-07 15:54:06 +02:00
action.yml rename: local-cache-path -> cache-image-path 2025-02-02 22:13:36 +09:00
codecov.yml ci: test workflow and codecov config 2023-02-21 09:42:52 +01:00
dev.Dockerfile update to yarn 3.6.3 2024-05-07 15:53:14 +02:00
docker-bake.hcl update bake-action to v6 2025-01-08 13:12:39 +01:00
jest.config.ts add tests 2023-02-21 09:42:52 +01:00
LICENSE Initial commit (docker/build-push-action#87) 2020-08-18 18:19:47 +02:00
package.json build(deps): bump @docker/actions-toolkit from 0.49.0 to 0.53.0 2025-01-24 06:42:07 +00:00
README.md docs: README 2025-02-02 22:15:08 +09:00
tsconfig.json add tests 2023-02-21 09:42:52 +01:00
yarn.lock build(deps): bump @docker/actions-toolkit from 0.49.0 to 0.53.0 2025-01-24 06:42:07 +00:00

About

GitHub Action to install QEMU static binaries.

Screenshot


Usage

name: ci

on:
  push:

jobs:
  qemu:
    runs-on: ubuntu-latest
    steps:
      -
        name: Set up QEMU
        uses: docker/setup-qemu-action@v3

Customizing

inputs

The following inputs can be used as step.with keys:

Name Type Default Description
image String tonistiigi/binfmt:latest QEMU static binaries Docker image
platforms String all Platforms to install (e.g., arm64,riscv64,arm)
cache-image Bool true Cache binfmt image to GitHub Actions cache backend
cache-image-path String Local path to store the binfmt image. Using this enables local caching instead of GitHub Actions cache. Note: The "latest" tag won't auto-update - delete the cached file to fetch updates.

outputs

The following outputs are available:

Name Type Description
platforms String Available platforms (comma separated)

Contributing

Want to contribute? Awesome! You can find information about contributing to this project in the CONTRIBUTING.md