Skip to content

Commit

Permalink
fix(ci): Fixes for liblsan0 packages in devcontainer and bazel base i…
Browse files Browse the repository at this point in the history
…mage (magma#15323)

* fix(ci): Fixes for liblsan0 packages in devcontainer and bazel base image

changes:
 1) Added the workflow_dispatch condition

Signed-off-by: akhilamoyila9 <[email protected]>

* fix(ci): Fixes for liblsan0 packages in devcontainer and bazel base image

changes:
 1. Modified the workflow dispatch condition

Signed-off-by: akhilamoyila9 <[email protected]>

* fix(ci): Fixes for liblsan0 packages in devcontainer and bazel base image

changes:
 1. Removed the white spaces in the workflow file

Signed-off-by: akhilamoyila9 <[email protected]>

* fix(ci): Fixes for liblsan0 packages in devcontainer and bazel base image

changes:
 1) Modified the github event conditions

Signed-off-by: akhilamoyila9 <[email protected]>

---------

Signed-off-by: akhilamoyila9 <[email protected]>
  • Loading branch information
akhilamoyila9 authored Oct 14, 2023
1 parent 0a7c8d4 commit 4bb401a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker-builder-devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

name: Magma Build Docker Image Bazel Base & DevContainer
on:
workflow_dispatch: null
push:
branches:
- master
Expand Down Expand Up @@ -53,7 +54,7 @@ env:
jobs:
build_dockerfile_bazel_base:
if: |
github.event_name == 'push' &&
(github.event_name == 'push' || github.event_name == 'workflow_dispatch') &&
github.ref_name == 'master' &&
github.repository_owner == 'magma'
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -88,7 +89,7 @@ jobs:
build_dockerfile_devcontainer:
needs: build_dockerfile_bazel_base
if: |
github.event_name == 'push' &&
(github.event_name == 'push' || github.event_name == 'workflow_dispatch') &&
github.ref_name == 'master' &&
github.repository_owner == 'magma'
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 4bb401a

Please sign in to comment.