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
47 changes: 47 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,69 +93,108 @@ jobs:
name: Unit Tests
uses: ./.github/workflows/pull_request.yml
needs: validate-tag
permissions:
contents: read
checks: write
pull-requests: write
with:
ref: ${{ inputs.tag || github.ref_name }}

integration-tests:
name: Integration Tests
uses: ./.github/workflows/pull_request_integration_tests.yml
needs: validate-tag
permissions:
contents: read
checks: write
pull-requests: write
actions: write
with:
ref: ${{ inputs.tag || github.ref_name }}

k8s-integration-tests:
name: K8s Integration Tests
uses: ./.github/workflows/pull_request_k8s_integration_tests.yml
needs: validate-tag
permissions:
contents: read
checks: write
pull-requests: write
actions: write
with:
ref: ${{ inputs.tag || github.ref_name }}

oats-tests:
name: OATS Tests
uses: ./.github/workflows/pull_request_oats_test.yml
needs: validate-tag
permissions:
contents: read
checks: write
pull-requests: write
actions: write
with:
ref: ${{ inputs.tag || github.ref_name }}

vm-integration-tests:
name: VM Integration Tests
uses: ./.github/workflows/workflow_integration_tests_vm.yml
needs: validate-tag
permissions:
contents: read
checks: write
pull-requests: write
actions: write
with:
ref: ${{ inputs.tag || github.ref_name }}

java-agent-tests:
name: Java Agent Tests
uses: ./.github/workflows/java-agent.yml
needs: validate-tag
permissions:
contents: read
with:
ref: ${{ inputs.tag || github.ref_name }}

format-check:
name: Format Check
uses: ./.github/workflows/clang-format-check.yml
needs: validate-tag
permissions:
contents: read
with:
ref: ${{ inputs.tag || github.ref_name }}

tidy-check:
name: Tidy Check
uses: ./.github/workflows/clang-tidy-check.yml
needs: validate-tag
permissions:
contents: read
with:
ref: ${{ inputs.tag || github.ref_name }}

arm-integration-tests:
name: ARM Integration Tests
uses: ./.github/workflows/pull_request_integration_tests_arm.yml
needs: validate-tag
permissions:
contents: read
checks: write
pull-requests: write
actions: write
with:
ref: ${{ inputs.tag || github.ref_name }}

docker-build-test:
name: Docker Build Test
uses: ./.github/workflows/pull_request_docker_build_test.yml
needs: validate-tag
permissions:
contents: read
id-token: write
packages: write
with:
ref: ${{ inputs.tag || github.ref_name }}

Expand Down Expand Up @@ -183,13 +222,21 @@ jobs:
name: Publish Docker Image (main)
uses: ./.github/workflows/publish_dockerhub_main.yml
needs: tests-passed
permissions:
contents: read
id-token: write
packages: write
with:
ref: ${{ inputs.tag || github.ref_name }}

docker-publish-k8s-cache:
name: Publish Docker Image (k8s cache)
uses: ./.github/workflows/publish_dockerhub_k8s_cache_main.yml
needs: tests-passed
permissions:
contents: read
id-token: write
packages: write
with:
ref: ${{ inputs.tag || github.ref_name }}

Expand Down