1
0
Fork 0
mirror of https://github.com/docker/setup-qemu-action.git synced 2024-12-22 15:02:23 +00:00

Provide usage examples in README.md

We provide two simple examples of invoking `qemu-{arch}-static` (or more
precisely, we let the kernel do the invocation.)

Closes: #95

Signed-off-by: Solomon Jacobs <solomonjacobs@protonmail.com>
This commit is contained in:
Solomon Jacobs 2024-12-15 10:42:19 +01:00
parent 8b562efa09
commit d11e3282b2

View file

@ -33,6 +33,26 @@ jobs:
- -
name: Set up QEMU name: Set up QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
with:
platforms: arm64, i386
-
name: Create an example binary for AArch64
run: |
go mod init hello
cat << EOL > hello.go
package main
func main() {
println("Hello, AArch64!")
}
EOL
GOARCH=arm64 go build hello.go
-
name: This would fail without docker/setup-qemu-action
run: ./hello
-
name: You can also run images from other platforms
run: docker run --platform linux/i386 hello-world
``` ```
## Customizing ## Customizing