mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-08 20:25:26 +03:00
show images for troubleshooting
This commit is contained in:
parent
e93e5ed931
commit
f1b6eaae0b
74
.github/workflows/ci.yml
vendored
74
.github/workflows/ci.yml
vendored
@ -6,6 +6,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- dev
|
- dev
|
||||||
- master
|
- master
|
||||||
|
- fix_builds
|
||||||
|
|
||||||
# only run the latest commit to avoid cache overwrites
|
# only run the latest commit to avoid cache overwrites
|
||||||
concurrency:
|
concurrency:
|
||||||
@ -37,6 +38,8 @@ jobs:
|
|||||||
target: frigate
|
target: frigate
|
||||||
tags: ${{ steps.setup.outputs.image-name }}-amd64
|
tags: ${{ steps.setup.outputs.image-name }}-amd64
|
||||||
cache-from: type=registry,ref=${{ steps.setup.outputs.cache-name }}-amd64
|
cache-from: type=registry,ref=${{ steps.setup.outputs.cache-name }}-amd64
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
- name: Build and push TensorRT (x86 GPU)
|
- name: Build and push TensorRT (x86 GPU)
|
||||||
uses: docker/bake-action@v4
|
uses: docker/bake-action@v4
|
||||||
with:
|
with:
|
||||||
@ -47,6 +50,67 @@ jobs:
|
|||||||
tensorrt.tags=${{ steps.setup.outputs.image-name }}-tensorrt
|
tensorrt.tags=${{ steps.setup.outputs.image-name }}-tensorrt
|
||||||
*.cache-from=type=registry,ref=${{ steps.setup.outputs.cache-name }}-amd64
|
*.cache-from=type=registry,ref=${{ steps.setup.outputs.cache-name }}-amd64
|
||||||
*.cache-to=type=registry,ref=${{ steps.setup.outputs.cache-name }}-amd64,mode=max
|
*.cache-to=type=registry,ref=${{ steps.setup.outputs.cache-name }}-amd64,mode=max
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
|
- name: AMD/ROCm general build
|
||||||
|
env:
|
||||||
|
AMDGPU: gfx
|
||||||
|
HSA_OVERRIDE: 0
|
||||||
|
uses: docker/bake-action@v3
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
targets: rocm
|
||||||
|
files: docker/rocm/rocm.hcl
|
||||||
|
set: |
|
||||||
|
rocm.tags=${{ steps.setup.outputs.image-name }}-rocm
|
||||||
|
*.cache-from=type=gha
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
|
- name: AMD/ROCm gfx900
|
||||||
|
env:
|
||||||
|
AMDGPU: gfx900
|
||||||
|
HSA_OVERRIDE: 1
|
||||||
|
HSA_OVERRIDE_GFX_VERSION: 9.0.0
|
||||||
|
uses: docker/bake-action@v3
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
targets: rocm
|
||||||
|
files: docker/rocm/rocm.hcl
|
||||||
|
set: |
|
||||||
|
rocm.tags=${{ steps.setup.outputs.image-name }}-rocm-gfx900
|
||||||
|
*.cache-from=type=gha
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
|
- name: AMD/ROCm gfx1030
|
||||||
|
env:
|
||||||
|
AMDGPU: gfx1030
|
||||||
|
HSA_OVERRIDE: 1
|
||||||
|
HSA_OVERRIDE_GFX_VERSION: 10.3.0
|
||||||
|
uses: docker/bake-action@v3
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
targets: rocm
|
||||||
|
files: docker/rocm/rocm.hcl
|
||||||
|
set: |
|
||||||
|
rocm.tags=${{ steps.setup.outputs.image-name }}-rocm-gfx1030
|
||||||
|
*.cache-from=type=gha
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
|
- name: AMD/ROCm gfx1100
|
||||||
|
env:
|
||||||
|
AMDGPU: gfx1100
|
||||||
|
HSA_OVERRIDE: 1
|
||||||
|
HSA_OVERRIDE_GFX_VERSION: 11.0.0
|
||||||
|
uses: docker/bake-action@v3
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
targets: rocm
|
||||||
|
files: docker/rocm/rocm.hcl
|
||||||
|
set: |
|
||||||
|
rocm.tags=${{ steps.setup.outputs.image-name }}-rocm-gfx1100
|
||||||
|
*.cache-from=type=gha
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
arm64_build:
|
arm64_build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: ARM Build
|
name: ARM Build
|
||||||
@ -69,6 +133,8 @@ jobs:
|
|||||||
tags: |
|
tags: |
|
||||||
${{ steps.setup.outputs.image-name }}-standard-arm64
|
${{ steps.setup.outputs.image-name }}-standard-arm64
|
||||||
cache-from: type=registry,ref=${{ steps.setup.outputs.cache-name }}-arm64
|
cache-from: type=registry,ref=${{ steps.setup.outputs.cache-name }}-arm64
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
- name: Build and push RPi build
|
- name: Build and push RPi build
|
||||||
uses: docker/bake-action@v4
|
uses: docker/bake-action@v4
|
||||||
with:
|
with:
|
||||||
@ -79,6 +145,8 @@ jobs:
|
|||||||
rpi.tags=${{ steps.setup.outputs.image-name }}-rpi
|
rpi.tags=${{ steps.setup.outputs.image-name }}-rpi
|
||||||
*.cache-from=type=registry,ref=${{ steps.setup.outputs.cache-name }}-arm64
|
*.cache-from=type=registry,ref=${{ steps.setup.outputs.cache-name }}-arm64
|
||||||
*.cache-to=type=registry,ref=${{ steps.setup.outputs.cache-name }}-arm64,mode=max
|
*.cache-to=type=registry,ref=${{ steps.setup.outputs.cache-name }}-arm64,mode=max
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
- name: Build and push RockChip build
|
- name: Build and push RockChip build
|
||||||
uses: docker/bake-action@v3
|
uses: docker/bake-action@v3
|
||||||
with:
|
with:
|
||||||
@ -88,6 +156,8 @@ jobs:
|
|||||||
set: |
|
set: |
|
||||||
rk.tags=${{ steps.setup.outputs.image-name }}-rk
|
rk.tags=${{ steps.setup.outputs.image-name }}-rk
|
||||||
*.cache-from=type=gha
|
*.cache-from=type=gha
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
jetson_jp4_build:
|
jetson_jp4_build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Jetson Jetpack 4
|
name: Jetson Jetpack 4
|
||||||
@ -114,6 +184,8 @@ jobs:
|
|||||||
tensorrt.tags=${{ steps.setup.outputs.image-name }}-tensorrt-jp4
|
tensorrt.tags=${{ steps.setup.outputs.image-name }}-tensorrt-jp4
|
||||||
*.cache-from=type=registry,ref=${{ steps.setup.outputs.cache-name }}-jp4
|
*.cache-from=type=registry,ref=${{ steps.setup.outputs.cache-name }}-jp4
|
||||||
*.cache-to=type=registry,ref=${{ steps.setup.outputs.cache-name }}-jp4,mode=max
|
*.cache-to=type=registry,ref=${{ steps.setup.outputs.cache-name }}-jp4,mode=max
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
jetson_jp5_build:
|
jetson_jp5_build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Jetson Jetpack 5
|
name: Jetson Jetpack 5
|
||||||
@ -140,6 +212,8 @@ jobs:
|
|||||||
tensorrt.tags=${{ steps.setup.outputs.image-name }}-tensorrt-jp5
|
tensorrt.tags=${{ steps.setup.outputs.image-name }}-tensorrt-jp5
|
||||||
*.cache-from=type=registry,ref=${{ steps.setup.outputs.cache-name }}-jp5
|
*.cache-from=type=registry,ref=${{ steps.setup.outputs.cache-name }}-jp5
|
||||||
*.cache-to=type=registry,ref=${{ steps.setup.outputs.cache-name }}-jp5,mode=max
|
*.cache-to=type=registry,ref=${{ steps.setup.outputs.cache-name }}-jp5,mode=max
|
||||||
|
- name: Show docker image info
|
||||||
|
run: docker image ls --all
|
||||||
# The majority of users running arm64 are rpi users, so the rpi
|
# The majority of users running arm64 are rpi users, so the rpi
|
||||||
# build should be the primary arm64 image
|
# build should be the primary arm64 image
|
||||||
assemble_default_build:
|
assemble_default_build:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user