Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Mar 10, 2022
2 parents 2fd5104 + d22a136 commit 2b2d4ee
Show file tree
Hide file tree
Showing 66 changed files with 1,946 additions and 428 deletions.
38 changes: 26 additions & 12 deletions .github/dependabot.yml
@@ -1,15 +1,29 @@
version: 2
updates:
- package-ecosystem: pip
directory: "/"
target-branch: dev
commit-message:
prefix: "[Dependabot]"
labels:
# Maintain Python packages
- package-ecosystem: "pip"
directory: "/"
target-branch: dev
commit-message:
prefix: "[Dependabot]"
labels:
- Dependencies
assignees:
- Paebbels
reviewers:
- Paebbels
schedule:
interval: daily
reviewers:
- Paebbels
- Umarcor
schedule:
interval: "daily" # Checks on Monday trough Friday.

# Maintain GitHub Action runners
- package-ecosystem: "github-actions"
directory: "/"
target-branch: dev
commit-message:
prefix: "[Dependabot]"
labels:
- Dependencies
reviewers:
- Paebbels
- Umarcor
schedule:
interval: "weekly"
8 changes: 8 additions & 0 deletions .github/pull_request_template.md
@@ -1,8 +1,16 @@
# New Features

* tbd

# Changes

* tbd

# Bug Fixes

* tbd

----------
# Related PRs:

* tbd
47 changes: 28 additions & 19 deletions .github/workflows/Pipeline.yml
Expand Up @@ -12,14 +12,15 @@ jobs:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r0
with:
name: pyEDAA.CLITool
system_list: 'ubuntu macos' # disabled: "windows" and "msys2"

#UnitTesting:
# uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r0
# needs:
# - Params
# with:
# jobs: ${{ needs.Params.outputs.python_jobs }}
# artifact: ${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}
UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r0
needs:
- Params
with:
jobs: ${{ needs.Params.outputs.python_jobs }}
artifact: ${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}

Coverage:
uses: pyTooling/Actions/.github/workflows/CoverageCollection.yml@r0
Expand All @@ -44,10 +45,10 @@ jobs:
report: 'htmlmypy'
artifact: ${{ fromJson(needs.Params.outputs.params).artifacts.typing }}

#PublishTestResults:
# uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r0
# needs:
# - UnitTesting
PublishTestResults:
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r0
needs:
- UnitTesting

Package:
uses: pyTooling/Actions/.github/workflows/Package.yml@r0
Expand All @@ -62,7 +63,7 @@ jobs:
uses: pyTooling/Actions/.github/workflows/Release.yml@r0
if: startsWith(github.ref, 'refs/tags')
needs:
#- UnitTesting
- UnitTesting
- Coverage
- StaticTypeCheck
- Package
Expand Down Expand Up @@ -112,20 +113,28 @@ jobs:
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r0
needs:
- Params
#- UnitTesting
- UnitTesting
- Coverage
- StaticTypeCheck
- BuildTheDocs
- PublishToGitHubPages
#- PublishTestResults
- PublishTestResults
with:
package: ${{ fromJson(needs.Params.outputs.params).artifacts.package }}
remaining: |
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-ubuntu-3.7
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-ubuntu-3.8
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-ubuntu-3.9
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-ubuntu-3.10
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-windows-3.7
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-windows-3.8
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-windows-3.9
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-windows-3.10
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-msys2-3.9
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-macos-3.7
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-macos-3.8
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-macos-3.9
${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-macos-3.10
${{ fromJson(needs.Params.outputs.params).artifacts.coverage }}
${{ fromJson(needs.Params.outputs.params).artifacts.typing }}
${{ fromJson(needs.Params.outputs.params).artifacts.doc }}
# ${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-3.6
# ${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-3.7
# ${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-3.8
# ${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-3.9
# ${{ fromJson(needs.Params.outputs.params).artifacts.unittesting }}-3.10
3 changes: 3 additions & 0 deletions .idea/pyEDAA.CLITool.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions README.md
Expand Up @@ -23,10 +23,6 @@
-->


<p align="center">
<a title="edaa-org.github.io/pyEDAA.CLITool" href="https://edaa-org.github.io/pyEDAA.CLITool"><img height="275px" src="doc/_static/work-in-progress.png"/></a>
</p>

Provide unified interfaces to execute EDA tools via CLI from Python, agnostic to any specific configuration format/object.


Expand Down Expand Up @@ -111,7 +107,8 @@ print(f"Calling GHDL: {tool}")

This layer is used by:

* 🚧 pyEDAA.Workflow
* 🚧 [pyEDAA.Workflow](https://github.com/edaa-org/pyEDAA.Workflow)
* 🚧 [pyEDAA.Launcher](https://github.com/edaa-org/pyEDAA.Launcher)
* 🚧 [Open Source Verification Bundle (OSVB)](https://umarcor.github.io/osvb)


Expand Down

0 comments on commit 2b2d4ee

Please sign in to comment.