2020-01-23 09:35:30 +01:00
|
|
|
name: push
|
|
|
|
|
2019-12-23 17:53:19 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- release
|
2020-01-30 15:48:01 +01:00
|
|
|
pull_request:
|
|
|
|
branches-ignore:
|
|
|
|
- release
|
2019-12-23 17:53:19 +01:00
|
|
|
|
|
|
|
jobs:
|
2021-02-08 11:59:57 +01:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Checks syntax of our code
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-04-07 10:57:14 +02:00
|
|
|
with:
|
|
|
|
# Full git history is needed to get a proper list of changed files within `super-linter`
|
|
|
|
fetch-depth: 0
|
2021-02-08 11:59:57 +01:00
|
|
|
- uses: actions/setup-python@v2
|
|
|
|
- name: Lint Code Base
|
|
|
|
uses: github/super-linter@v3
|
|
|
|
env:
|
|
|
|
DEFAULT_BRANCH: develop
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
SUPPRESS_POSSUM: true
|
|
|
|
LINTER_RULES_PATH: /
|
|
|
|
VALIDATE_ALL_CODEBASE: false
|
|
|
|
VALIDATE_DOCKERFILE: false
|
2021-02-10 10:48:45 +01:00
|
|
|
FILTER_REGEX_EXCLUDE: (.*/)?(LICENSE|configuration/.*)
|
2021-02-08 11:59:57 +01:00
|
|
|
|
|
|
|
EDITORCONFIG_FILE_NAME: .ecrc
|
|
|
|
DOCKERFILE_HADOLINT_FILE_NAME: .hadolint.yaml
|
|
|
|
MARKDOWN_CONFIG_FILE: .markdown-lint.yml
|
|
|
|
PYTHON_BLACK_CONFIG_FILE: pyproject.toml
|
|
|
|
PYTHON_FLAKE8_CONFIG_FILE: .flake8
|
|
|
|
PYTHON_ISORT_CONFIG_FILE: pyproject.toml
|
2019-12-23 17:53:19 +01:00
|
|
|
build:
|
2021-01-20 09:57:30 +01:00
|
|
|
continue-on-error: ${{ matrix.docker_from == 'alpine:edge' }}
|
2019-12-23 17:53:19 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
build_cmd:
|
|
|
|
- ./build-latest.sh
|
|
|
|
- PRERELEASE=true ./build-latest.sh
|
2020-04-08 21:38:50 +02:00
|
|
|
- ./build-next.sh
|
|
|
|
- ./build.sh develop
|
2019-12-23 17:53:19 +01:00
|
|
|
docker_from:
|
2020-08-24 14:39:50 +02:00
|
|
|
- '' # use the default of the build script
|
2020-11-10 15:23:07 +01:00
|
|
|
- alpine:edge
|
2019-12-23 17:53:19 +01:00
|
|
|
fail-fast: false
|
|
|
|
runs-on: ubuntu-latest
|
2021-02-04 21:48:08 +01:00
|
|
|
name: Builds new NetBox Docker Images
|
2019-12-23 17:53:19 +01:00
|
|
|
steps:
|
2020-01-17 18:10:36 +01:00
|
|
|
- id: git-checkout
|
|
|
|
name: Checkout
|
2021-01-31 12:55:20 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-01-17 18:10:36 +01:00
|
|
|
- id: docker-build
|
|
|
|
name: Build the image from '${{ matrix.docker_from }}' with '${{ matrix.build_cmd }}'
|
2019-12-23 17:53:19 +01:00
|
|
|
run: ${{ matrix.build_cmd }}
|
|
|
|
env:
|
|
|
|
DOCKER_FROM: ${{ matrix.docker_from }}
|
|
|
|
GH_ACTION: enable
|
2020-01-17 18:10:36 +01:00
|
|
|
- id: docker-test
|
|
|
|
name: Test the image
|
2019-12-23 17:53:19 +01:00
|
|
|
run: IMAGE="${FINAL_DOCKER_TAG}" ./test.sh
|
2020-01-17 18:10:36 +01:00
|
|
|
if: steps.docker-build.outputs.skipped != 'true'
|