File: README.md

package info (click to toggle)
jpy 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,408 kB
  • sloc: ansic: 7,932; java: 3,617; python: 2,985; xml: 168; makefile: 162; sh: 49; javascript: 29
file content (19 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# docker buildx bake

This is an alternative way to build the jpy Linux wheels.
It is mainly used as a means to produce arm64 wheels via QEMU cross-compiling since GHA does not have a native Linux arm64 runner.

That said, it can be useful locally too; either to produce native or arm64 Linux wheels.

```bash
docker buildx bake \
  --file .github/docker/docker-bake.hcl \
  --set "*.output=type=local,dest=/tmp/dist"
```

```bash
docker buildx bake \
  --file .github/docker/docker-bake.hcl \
  --set "*.output=type=local,dest=/tmp/dist" \
  --set "*.platform=linux/arm64/v8" 
```