mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 13:34:13 +03:00
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* Remove gfx 900 support and only keep ROCm build with all variants by default * Include C++ for JIT header compilation
16 lines
447 B
Makefile
16 lines
447 B
Makefile
BOARDS += rocm
|
|
|
|
local-rocm: version
|
|
docker buildx bake --file=docker/rocm/rocm.hcl rocm \
|
|
--set rocm.tags=frigate:latest-rocm \
|
|
--load
|
|
|
|
build-rocm: version
|
|
docker buildx bake --file=docker/rocm/rocm.hcl rocm \
|
|
--set rocm.tags=$(IMAGE_REPO):${GITHUB_REF_NAME}-$(COMMIT_HASH)-rocm
|
|
|
|
push-rocm: build-rocm
|
|
docker buildx bake --file=docker/rocm/rocm.hcl rocm \
|
|
--set rocm.tags=$(IMAGE_REPO):${GITHUB_REF_NAME}-$(COMMIT_HASH)-rocm \
|
|
--push
|