Allow table menus to visually overflow the table #14149
Workflow file for this run
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
--- | |
# A lighter-weight version of CI specifically for pull requests | |
name: "CI - Pull Request" | |
concurrency: # Cancel any existing runs of this workflow for this same PR | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
on: # yamllint disable | |
pull_request: | |
workflow_call: | |
jobs: | |
ruff: | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "--only dev --only linting" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Linting: ruff" | |
run: "poetry run invoke ruff --output-format github" | |
yamllint: | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "--only dev --only linting" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Linting: yamllint" | |
run: "poetry run invoke yamllint" | |
markdownlint: | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "--only dev" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Install markdownlint" | |
run: "npm install [email protected]" | |
- name: "Linting: markdownlint" | |
run: "poetry run invoke markdownlint" | |
hadolint: | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Run Hadolint" | |
uses: "hadolint/[email protected]" | |
with: | |
dockerfile: "docker/Dockerfile" | |
check-migrations: | |
name: "Run 'nautobot-server makemigrations --dry-run --check'" | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
NAUTOBOT_DB_USER: "nautobot" | |
NAUTOBOT_DB_PASSWORD: "decinablesprewad" | |
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql" | |
services: | |
postgres: | |
image: "postgres:13-alpine" | |
env: | |
POSTGRES_USER: "nautobot" | |
POSTGRES_PASSWORD: "decinablesprewad" | |
POSTGRES_DB: "nautobot" | |
ports: | |
- "5432:5432" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "" # override default "--only dev" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Run check migrations" | |
run: "poetry run invoke check-migrations" | |
check-schema: | |
name: "Run REST API schema checks" | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
NAUTOBOT_DB_USER: "nautobot" | |
NAUTOBOT_DB_PASSWORD: "decinablesprewad" | |
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql" | |
NAUTOBOT_CONFIG: "nautobot/core/tests/nautobot_config.py" | |
services: | |
postgres: | |
image: "postgres:13-alpine" | |
env: | |
POSTGRES_USER: "nautobot" | |
POSTGRES_PASSWORD: "decinablesprewad" | |
POSTGRES_DB: "nautobot" | |
ports: | |
- "5432:5432" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "" # override default "--only dev" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Run check-schema" | |
# REST API schema generation currently includes GraphQL schema generation, which is dependent on the DB :-( | |
run: "poetry run invoke migrate check-schema" | |
pylint: | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
NAUTOBOT_DB_USER: "nautobot" | |
NAUTOBOT_DB_PASSWORD: "decinablesprewad" | |
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql" | |
NAUTOBOT_CONFIG: "nautobot/core/tests/nautobot_config.py" | |
services: | |
postgres: | |
image: "postgres:13-alpine" | |
env: | |
POSTGRES_USER: "nautobot" | |
POSTGRES_PASSWORD: "decinablesprewad" | |
POSTGRES_DB: "nautobot" | |
ports: | |
- "5432:5432" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "" # override default "--only dev" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Run pylint" | |
run: "poetry run invoke pylint" | |
tests-postgres: | |
name: "Unit tests (PostgreSQL and Python 3.8)" | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
NAUTOBOT_DB_USER: "nautobot" | |
NAUTOBOT_DB_PASSWORD: "decinablesprewad" | |
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql" | |
services: | |
postgres: | |
image: "postgres:13-alpine" | |
env: | |
POSTGRES_USER: "nautobot" | |
POSTGRES_PASSWORD: "decinablesprewad" | |
POSTGRES_DB: "nautobot" | |
ports: | |
- "5432:5432" | |
redis: | |
image: "redis:6-alpine" | |
ports: | |
- "6379:6379" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "" # override default "--only dev" | |
poetry-version: "1.8.2" | |
python-version: "3.8" | |
- name: "Run unittest" | |
run: "poetry run invoke unittest --failfast --no-keepdb --no-cache-test-fixtures --parallel" | |
needs: | |
- "check-migrations" | |
- "check-schema" | |
- "hadolint" | |
- "markdownlint" | |
- "ruff" | |
- "yamllint" | |
tests-mysql: | |
name: "Unit tests (MySQL and Python 3.12)" | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
NAUTOBOT_DB_USER: "root" | |
NAUTOBOT_DB_PASSWORD: "decinablesprewad" | |
NAUTOBOT_DB_HOST: "127.0.0.1" | |
NAUTOBOT_DB_PORT: "3306" | |
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.mysql" | |
services: | |
mysql: | |
image: "mysql:8" | |
env: | |
MYSQL_ROOT_PASSWORD: "decinablesprewad" | |
MYSQL_PASSWORD: "decinablesprewad" | |
MYSQL_DATABASE: "nautobot" | |
ports: | |
- "3306:3306" | |
redis: | |
image: "redis:6-alpine" | |
ports: | |
- "6379:6379" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Install Required Dependencies for MySQL Client" | |
run: "sudo apt-get update && sudo apt-get install --no-install-recommends -y default-libmysqlclient-dev gcc" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "--extras mysql" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Run unittest" | |
run: "poetry run invoke unittest --failfast --no-keepdb --no-cache-test-fixtures --parallel" | |
needs: | |
- "check-migrations" | |
- "check-schema" | |
- "hadolint" | |
- "markdownlint" | |
- "ruff" | |
- "yamllint" | |
migration-tests-mysql: | |
name: "Run migrations against test dataset (MySQL and Python 3.8)" | |
runs-on: "ubuntu-20.04" | |
env: | |
MIGRATION_TEST_DATASET: "development/datasets/nautobot_1.5.16_mysql.tar.gz" | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
NAUTOBOT_CONFIG: "nautobot/core/tests/nautobot_config.py" | |
NAUTOBOT_DB_USER: "root" | |
NAUTOBOT_DB_PASSWORD: "decinablesprewad" | |
NAUTOBOT_DB_HOST: "127.0.0.1" | |
NAUTOBOT_DB_PORT: "3306" | |
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.mysql" | |
services: | |
mysql: | |
image: "mysql:8" | |
env: | |
MYSQL_ROOT_PASSWORD: "decinablesprewad" | |
MYSQL_PASSWORD: "decinablesprewad" | |
MYSQL_DATABASE: "nautobot" | |
ports: | |
- "3306:3306" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Install Required Dependencies for MySQL Client" | |
run: "sudo apt-get update && sudo apt-get install --no-install-recommends -y default-libmysqlclient-dev gcc" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "--extras mysql" | |
poetry-version: "1.8.2" | |
python-version: "3.8" | |
- name: "Run migration test" | |
run: "poetry run invoke migration-test --db-engine mysql --dataset $MIGRATION_TEST_DATASET" | |
needs: | |
- "check-migrations" | |
- "check-schema" | |
- "hadolint" | |
- "markdownlint" | |
- "ruff" | |
- "yamllint" | |
migration-tests-postgres: | |
name: "Run migrations against test dataset (PostgreSQL and Python 3.12)" | |
runs-on: "ubuntu-20.04" | |
env: | |
MIGRATION_TEST_DATASET: "development/datasets/nautobot_1.5.16_postgres.tar.gz" | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
NAUTOBOT_CONFIG: "nautobot/core/tests/nautobot_config.py" | |
NAUTOBOT_DB_USER: "nautobot" | |
NAUTOBOT_DB_PASSWORD: "decinablesprewad" | |
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql" | |
PGPASSWORD: "decinablesprewad" | |
services: | |
postgres: | |
image: "postgres:13-alpine" | |
env: | |
POSTGRES_USER: "nautobot" | |
POSTGRES_PASSWORD: "decinablesprewad" | |
POSTGRES_DB: "nautobot" | |
ports: | |
- "5432:5432" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "" # override default "--only dev" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Run migration test" | |
run: "poetry run invoke migration-test --db-engine postgres --dataset $MIGRATION_TEST_DATASET" | |
needs: | |
- "check-migrations" | |
- "check-schema" | |
- "hadolint" | |
- "markdownlint" | |
- "ruff" | |
- "yamllint" | |
integration-test: | |
runs-on: "ubuntu-20.04" | |
env: | |
INVOKE_NAUTOBOT_LOCAL: "True" | |
NAUTOBOT_DB_USER: "nautobot" | |
NAUTOBOT_DB_PASSWORD: "decinablesprewad" | |
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql" | |
NAUTOBOT_SELENIUM_URL: "http://localhost:4444/wd/hub" | |
services: | |
postgres: | |
image: "postgres:13-alpine" | |
env: | |
POSTGRES_USER: "nautobot" | |
POSTGRES_PASSWORD: "decinablesprewad" | |
POSTGRES_DB: "nautobot" | |
ports: | |
- "5432:5432" | |
redis: | |
image: "redis:6-alpine" | |
ports: | |
- "6379:6379" | |
selenium: | |
image: "selenium/standalone-firefox:4.22" | |
ports: | |
- "4444:4444" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "" # override default "--only dev" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Run Integration Tests" | |
# If NAUTOBOT_SELENIUM_HOST is set to 'localhost' or '127.0.0.1' the connection does not work | |
run: "NAUTOBOT_SELENIUM_HOST=`hostname -f` poetry run invoke integration-test --keepdb" | |
needs: | |
- "check-migrations" | |
- "check-schema" | |
- "hadolint" | |
- "markdownlint" | |
- "ruff" | |
- "yamllint" | |
changelog: | |
if: ${{ (contains(fromJson('["develop","next"]'), github.base_ref)) || (startsWith(github.base_ref, 'ltm')) }} | |
runs-on: "ubuntu-20.04" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
with: | |
fetch-depth: "0" | |
- name: "Setup environment" | |
uses: "networktocode/gh-action-setup-poetry-environment@v6" | |
with: | |
poetry-install-options: "--only dev" | |
poetry-version: "1.8.2" | |
python-version: "3.12" | |
- name: "Check for changelog entry" | |
run: | | |
git fetch --no-tags origin +refs/heads/${{ github.base_ref }}:refs/remotes/origin/${{ github.base_ref }} | |
poetry run towncrier check --compare-with origin/${{ github.base_ref }} | |
container-build-test: | |
name: "Test Container Build (amd64 only on Python 3.12)" | |
runs-on: "ubuntu-22.04" | |
needs: | |
- "check-migrations" | |
- "check-schema" | |
- "hadolint" | |
- "markdownlint" | |
- "ruff" | |
- "yamllint" | |
steps: | |
- name: "Check out repository code" | |
uses: "actions/checkout@v4" | |
- name: "Set up QEMU" | |
uses: "docker/setup-qemu-action@v2" | |
- name: "Set up Docker Buildx" | |
uses: "docker/setup-buildx-action@v2" | |
- name: "Login to GitHub Container Registry" | |
uses: "docker/login-action@v2" | |
with: | |
registry: "ghcr.io" | |
username: "${{ github.actor }}" | |
password: "${{ secrets.GITHUB_TOKEN }}" | |
- name: "Build `final`" | |
uses: "./.github/actions/build-nautobot-image" | |
with: | |
branch: "${{ github.head_ref }}" | |
image: "ghcr.io/nautobot/nautobot" | |
platforms: "linux/amd64" | |
push: "false" | |
python-version: "3.12" | |
tag-latest: "false" | |
tag-latest-for-branch: "false" | |
tag-latest-for-py: "false" | |
target: "final" | |
all-tests-passed: | |
runs-on: "ubuntu-20.04" | |
steps: | |
- run: "echo 'All tests succeeded'" | |
needs: | |
- "container-build-test" | |
- "integration-test" | |
- "migration-tests-mysql" | |
- "migration-tests-postgres" | |
- "pylint" | |
- "tests-mysql" | |
- "tests-postgres" |