Remove Woodpecker CI configuration file

- Deleted the `.woodpecker.yml` file, which contained the CI configuration for multi-platform builds targeting ARM64 and AMD64 platforms.
- This change simplifies the project by removing obsolete CI settings that are no longer in use.

Made-with: Cursor
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-04-09 19:51:01 +03:00
parent d3a2300669
commit 7313e59580
2 changed files with 22 additions and 27 deletions
+22
View File
@@ -0,0 +1,22 @@
name: build
on:
push:
branches: [stage, main]
workflow_dispatch:
jobs:
build:
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
strategy:
matrix:
include:
- arch: arm64
tag: arm
dockerfile: Dockerfile.jetson
- arch: amd64
tag: amd64
dockerfile: Dockerfile
steps:
- uses: actions/checkout@v4
- run: |
docker build -f ${{ matrix.dockerfile }} -t localhost:5000/detections:${{ github.ref_name }}-${{ matrix.tag }} .
docker push localhost:5000/detections:${{ github.ref_name }}-${{ matrix.tag }}