Skip to content

Commit

Permalink
Merge pull request #233 from harshkhandeparkar/workflow-path-segregation
Browse files Browse the repository at this point in the history
Segregated Test Workflows by Path
  • Loading branch information
msaligane authored Sep 11, 2023
2 parents cdcd24f + a56ae6a commit 7319f49
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/cryo_gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- main
pull_request:
paths:
- 'openfasoc/common/**'
- 'openfasoc/generators/common/**'
- 'openfasoc/generators/common/cryo-gen/**'
workflow_dispatch:

jobs:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ldo_sky130hvl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- main
pull_request:
paths:
- 'openfasoc/common/**'
- 'openfasoc/generators/common/**'
- 'openfasoc/generators/common/ldo-gen/**'
workflow_dispatch:

jobs:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tempSense_sky130hd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- main
pull_request:
paths:
- 'openfasoc/common/**'
- 'openfasoc/generators/common/**'
- 'openfasoc/generators/common/temp-sense-gen/**'
workflow_dispatch:

jobs:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/test_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ name: Lint and Test

on:
pull_request:
paths:
- 'openfasoc/common/**'
- 'openfasoc/generators/common/**'
- 'openfasoc/generators/common/cryo-gen/**'
- 'tests/**'
- 'requirements.txt'
- 'pytest.ini'
push:
schedule:
- cron: 0 2 * * * # run at 2 AM UTC
Expand Down

0 comments on commit 7319f49

Please sign in to comment.