Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 37 additions & 2 deletions .sync.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,46 @@
---
.github/workflows/ci.yml:
:global:
matrix_command: bash matrix.sh build
matrix_requires_yq: true
build_job_name: 'Build ${{ matrix.platform }} CI container'
build_runner: '${{ matrix.runner }}'
image_tag: 'ci/openvoxagent:${{ matrix.agent_semver }}-${{ matrix.platform }}'
build_platforms: 'linux/${{ matrix.platform }}'
build_args:
- 'OPENVOX_RELEASE=${{ matrix.release }}'
- 'OPENVOXAGENT_VERSION=${{ matrix.agent_version }}'
.github/workflows/ci.yml:
build_job_name: 'Build ${{ matrix.platform }} CI container'
.github/workflows/security_scanning.yml:
scan_job_name: 'Scan ${{ matrix.platform }} container'
sarif_category: 'grype-${{ matrix.platform }}'
.github/workflows/build_container.yml:
publish_tag_patterns:
- 'v*'
publish_build_job_name: 'Build OpenVox agent ${{ matrix.agent_semver }} (${{ matrix.platform }})'
publish_build_arch: 'linux/${{ matrix.platform }}'
publish_tags:
- 'ghcr.io/openvoxproject/openvoxagent:${{ matrix.release }}-${{ github.sha }}-${{ matrix.platform }}'
publish_manifest_matrix_command: bash matrix.sh tag
publish_manifest_steps:
- name: Create ref-specific multi-architecture manifests
commands:
- >-
docker buildx imagetools create
-t ghcr.io/openvoxproject/openvoxagent:${{ matrix.agent_semver }}-${{ github.ref_name }}
-t ghcr.io/openvoxproject/openvoxagent:${{ matrix.agent_semver }}
-t ghcr.io/openvoxproject/openvoxagent:${{ matrix.release }}
-t docker.io/voxpupuli/openvoxagent:${{ matrix.agent_semver }}-${{ github.ref_name }}
-t docker.io/voxpupuli/openvoxagent:${{ matrix.agent_semver }}
-t docker.io/voxpupuli/openvoxagent:${{ matrix.release }}
ghcr.io/openvoxproject/openvoxagent:${{ matrix.release }}-${{ github.sha }}-arm64
ghcr.io/openvoxproject/openvoxagent:${{ matrix.release }}-${{ github.sha }}-amd64
- name: Update floating multi-architecture tags
if: "github.ref == 'refs/heads/main'"
commands:
- >-
docker buildx imagetools create
-t ghcr.io/openvoxproject/openvoxagent:latest
-t docker.io/voxpupuli/openvoxagent:latest
ghcr.io/openvoxproject/openvoxagent:${{ matrix.release }}-${{ github.sha }}-arm64
ghcr.io/openvoxproject/openvoxagent:${{ matrix.release }}-${{ github.sha }}-amd64
dockerhub_repository: voxpupuli/openvoxagent
Loading