-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbranch.python.agent-framework-sampler-py.yml
More file actions
48 lines (41 loc) · 1.31 KB
/
branch.python.agent-framework-sampler-py.yml
File metadata and controls
48 lines (41 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: agent-framework-sampler-py
on:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
pull_request:
paths:
- python/agent-framework-sampler-py/**
- .github/workflows/uv_ci.yml
- .github/workflows/branch.python.agent-framework-sampler-py.yml
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
PROJECT_NAME: agent-framework-sampler-py
WORKSPACE: python/agent-framework-sampler-py
jobs:
verify:
uses: ./.github/workflows/uv_ci.yml
with:
working-directory: python/agent-framework-sampler-py
docker_build__matrix:
needs: verify
name: docker build --target
continue-on-error: true
strategy:
max-parallel: 10
matrix:
include:
# base > uv > dev > tested
- target: tested
# final release
# base > uv > built
- target: release
runs-on: ubuntu-latest
steps:
- uses: percebus/github-actions-common/.github/actions/checkout@main
- uses: percebus/github-actions-docker/.github/actions/build@main
with:
repository_name: ${{ github.event.repository.name }}.${{ env.PROJECT_NAME }}
working-directory: ${{ env.WORKSPACE }}
target: ${{ matrix.target }}
scan-image: "false"