Skip to content

Commit

Permalink
Test conditional run
Browse files Browse the repository at this point in the history
  • Loading branch information
doganulus committed Jul 25, 2024
1 parent 5a17100 commit 8345cee
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test-builder-with-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,21 @@ concurrency:

jobs:
build-package-with-cache:
# if: ${{ github.event.registry_package.package_version.container_metadata.tag.name == 'latest-builder-with-cache' }}
if: >-
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch' ||
github.event_name == 'registry_package' ||
(
github.event.registry_package.name == 'autoware' &&
github.event.registry_package.package_version.container_metadata.tag.name == 'latest-builder-with-cache'
)
runs-on: ubuntu-latest
container:
image: ghcr.io/bounverif/autoware:latest-builder-with-cache

strategy:
fail-fast: false
matrix:
package:
- autoware_tensorrt_yolox
Expand Down

0 comments on commit 8345cee

Please sign in to comment.