This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from nautobot/develop
v1.0.2
- Loading branch information
Showing
14 changed files
with
283 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
--- | ||
name: "CI" | ||
on: | ||
- "push" | ||
- "pull_request" | ||
|
||
jobs: | ||
black: | ||
runs-on: "ubuntu-20.04" | ||
env: | ||
INVOKE_NAUTOBOT_CHATOPS_ARISTA_CLOUDVISION_LOCAL: "True" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Setup environment" | ||
uses: "networktocode/gh-action-setup-poetry-environment@v1" | ||
- name: "Linting: black" | ||
run: "poetry run invoke black" | ||
bandit: | ||
runs-on: "ubuntu-20.04" | ||
env: | ||
INVOKE_NAUTOBOT_CHATOPS_ARISTA_CLOUDVISION_LOCAL: "True" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Setup environment" | ||
uses: "networktocode/gh-action-setup-poetry-environment@v1" | ||
- name: "Linting: bandit" | ||
run: "poetry run invoke bandit" | ||
needs: | ||
- "black" | ||
pydocstyle: | ||
runs-on: "ubuntu-20.04" | ||
env: | ||
INVOKE_NAUTOBOT_CHATOPS_ARISTA_CLOUDVISION_LOCAL: "True" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Setup environment" | ||
uses: "networktocode/gh-action-setup-poetry-environment@v1" | ||
- name: "Linting: pydocstyle" | ||
run: "poetry run invoke pydocstyle" | ||
needs: | ||
- "black" | ||
flake8: | ||
runs-on: "ubuntu-20.04" | ||
env: | ||
INVOKE_NAUTOBOT_CHATOPS_ARISTA_CLOUDVISION_LOCAL: "True" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Setup environment" | ||
uses: "networktocode/gh-action-setup-poetry-environment@v1" | ||
- name: "Linting: flake8" | ||
run: "poetry run invoke flake8" | ||
needs: | ||
- "black" | ||
yamllint: | ||
runs-on: "ubuntu-20.04" | ||
env: | ||
INVOKE_NAUTOBOT_CHATOPS_ARISTA_CLOUDVISION_LOCAL: "True" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Setup environment" | ||
uses: "networktocode/gh-action-setup-poetry-environment@v1" | ||
- name: "Linting: yamllint" | ||
run: "poetry run invoke yamllint" | ||
needs: | ||
- "black" | ||
build: | ||
runs-on: "ubuntu-20.04" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Setup environment" | ||
uses: "networktocode/gh-action-setup-poetry-environment@v1" | ||
- name: "Copy credentials" | ||
run: "cp development/creds.example.env development/creds.env" | ||
- name: "Build Container" | ||
run: "poetry run invoke build" | ||
needs: | ||
- "bandit" | ||
- "pydocstyle" | ||
- "flake8" | ||
- "yamllint" | ||
pylint: | ||
runs-on: "ubuntu-20.04" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Setup environment" | ||
uses: "networktocode/gh-action-setup-poetry-environment@v1" | ||
- name: "Copy credentials" | ||
run: "cp development/creds.example.env development/creds.env" | ||
- name: "Build Container" | ||
run: "poetry run invoke build" | ||
- name: "Linting: Pylint" | ||
run: "poetry run invoke pylint" | ||
needs: | ||
- "build" | ||
unittest: | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
python-version: ["3.6", "3.7", "3.8", "3.9"] | ||
nautobot-version: ["1.0.1"] | ||
runs-on: "ubuntu-20.04" | ||
env: | ||
INVOKE_NAUTOBOT_CHATOPS_ARISTA_CLOUDVISION_PYTHON_VER: "${{ matrix.python-version }}" | ||
INVOKE_NAUTOBOT_CHATOPS_ARISTA_CLOUDVISION_NAUTOBOT_VER: "${{ matrix.nautobot-version }}" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Setup environment" | ||
uses: "networktocode/gh-action-setup-poetry-environment@v1" | ||
- name: "Copy credentials" | ||
run: "cp development/creds.example.env development/creds.env" | ||
- name: "Build Container" | ||
run: "poetry run invoke build" | ||
- name: "Run Tests" | ||
run: "poetry run invoke unittest" | ||
needs: | ||
- "pylint" | ||
publish_gh: | ||
name: "Publish to GitHub" | ||
runs-on: "ubuntu-20.04" | ||
if: "startsWith(github.ref, 'refs/tags/v')" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Set up Python" | ||
uses: "actions/setup-python@v2" | ||
with: | ||
python-version: "3.9" | ||
- name: "Install Python Packages" | ||
run: "pip install poetry" | ||
- name: "Set env" | ||
run: "echo RELEASE_VERSION=${GITHUB_REF:10} >> $GITHUB_ENV" | ||
- name: "Run Poetry Version" | ||
run: "poetry version $RELEASE_VERSION" | ||
- name: "Run Poetry Build" | ||
run: "poetry build" | ||
- name: "Upload binaries to release" | ||
uses: "svenstaro/upload-release-action@v2" | ||
with: | ||
repo_token: "${{ secrets.NTC_GITHUB_TOKEN }}" | ||
file: "dist/*" | ||
tag: "${{ github.ref }}" | ||
overwrite: true | ||
file_glob: true | ||
needs: | ||
- "unittest" | ||
publish_pypi: | ||
name: "Push Package to PyPI" | ||
runs-on: "ubuntu-20.04" | ||
if: "startsWith(github.ref, 'refs/tags/v')" | ||
steps: | ||
- name: "Check out repository code" | ||
uses: "actions/checkout@v2" | ||
- name: "Set up Python" | ||
uses: "actions/setup-python@v2" | ||
with: | ||
python-version: "3.9" | ||
- name: "Install Python Packages" | ||
run: "pip install poetry" | ||
- name: "Set env" | ||
run: "echo RELEASE_VERSION=${GITHUB_REF:10} >> $GITHUB_ENV" | ||
- name: "Run Poetry Version" | ||
run: "poetry version $RELEASE_VERSION" | ||
- name: "Run Poetry Build" | ||
run: "poetry build" | ||
- name: "Push to PyPI" | ||
uses: "pypa/gh-action-pypi-publish@release/v1" | ||
with: | ||
user: "__token__" | ||
password: "${{ secrets.PYPI_API_TOKEN }}" | ||
needs: | ||
- "unittest" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Changelog | ||
|
||
## v1.0.2 - 2021-09-30 | ||
|
||
### Added | ||
|
||
- #15 Customization of CVaaS URL | ||
- #15 Changed Arista Logo | ||
|
||
### Changed | ||
|
||
- #15 Changed Arista Logo | ||
|
||
### Fixed | ||
|
||
- Error when ON_PREM is not set |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-18.9 KB
nautobot_chatops_arista_cloudvision/static/nautobot_cloudvision/cloudvision.png
Binary file not shown.
Binary file added
BIN
+14.9 KB
...bot_chatops_arista_cloudvision/static/nautobot_cloudvision/cloudvision_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.