Compare commits

..

5 commits

Author SHA1 Message Date
f430042b51 chore(deps): update dependency coverage to v7.6.1
All checks were successful
build pypackage and create release / release-github (pull_request) Successful in 12s
check code / check-code (pull_request) Successful in 23s
2024-08-05 08:21:04 +02:00
96d4bff5ff Merge pull request 'chore(deps): update lscr.io/linuxserver/netbox docker tag to v4.0.8' (#30) from renovate/lscr.io-linuxserver-netbox-4.x into main
All checks were successful
check code / check-code (push) Successful in 18s
Reviewed-on: #30
2024-07-28 18:55:45 +02:00
aaab7d948e chore(deps): update lscr.io/linuxserver/netbox docker tag to v4.0.8
All checks were successful
build pypackage and create release / release-github (pull_request) Successful in 54s
check code / check-code (pull_request) Successful in 1m8s
2024-07-27 08:19:35 +02:00
f4e877e2fe remove lefthook from justfile
All checks were successful
check code / check-code (push) Successful in 52s
Signed-off-by: Ivan Schaller <ivan@schaller.sh>
2024-07-17 20:35:33 +02:00
65723753f6 update ci ciles
Some checks failed
check code / check-code (push) Has been cancelled
Signed-off-by: Ivan Schaller <ivan@schaller.sh>
2024-07-17 20:35:11 +02:00
6 changed files with 84 additions and 29 deletions

View file

@ -1,4 +1,4 @@
name: build and publish
name: build pypackage and create release
on:
push:
@ -9,16 +9,55 @@ on:
branches: [main, master]
jobs:
release-pypackage:
uses: actions/workflows/.gitea/workflows/release_pypackage.yml@master
with:
repository: main
secrets:
username: __token__
token: ${{ secrets.PACKAGE_TOKEN }}
gh-token: ${{ secrets.GH_TOKEN }}
release-github:
runs-on: ubuntu-latest
env:
HATCH_INDEX_REPO: main
HATCH_INDEX_USER: __token__
HATCH_INDEX_AUTH: ${{ secrets.PACKAGE_TOKEN }}
steps:
- name: checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
update-changelog:
uses: actions/workflows/.gitea/workflows/update_changelog.yml@master
with:
branch: main
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: setup go
uses: actions/setup-go@v4
with:
go-version: ">=1.20"
- name: install hatc h
run: pip install -U hatch hatchling
- name: build package
run: hatch build --clean
- name: install auto-changelog
run: npm install auto-changelog
- name: generate changelog
run: >-
npx auto-changelog -t keepachangelog
--commit-limit 50 --backfill-limit 50
--ignore-commit-pattern '[Bb]ump version|[Uu]pdate changelog|[Mm]erge pull request'
- name: get release notes
id: release-notes
uses: olofvndrhr/releasenote-gen@v1
- name: publish package
if: gitea.event_name != 'pull_request'
run: hatch publish --yes --no-prompt
- name: create gitea release
uses: https://gitea.com/actions/release-action@main
if: gitea.event_name != 'pull_request'
with:
title: ${{ gitea.ref_name }}
body: ${{ steps.release-notes.outputs.releasenotes }}
files: |-
dist/**

View file

@ -9,6 +9,23 @@ on:
jobs:
check-code:
uses: actions/workflows/.gitea/workflows/check_python_hatch.yml@master
with:
run-tests: true
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: install hatch
run: pip install -U hatch
- name: test codestyle
run: hatch run lint:style
- name: test typing
run: hatch run lint:typing
- name: run tests
run: hatch run default:test

View file

@ -1,4 +1,4 @@
name: build and release
name: build pypackage and create release
on:
push:
@ -17,7 +17,7 @@ jobs:
HATCH_INDEX_AUTH: ${{ secrets.PACKAGE_TOKEN }}
steps:
- name: checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
@ -25,12 +25,18 @@ jobs:
with:
python-version: "3.11"
- name: install hatch
run: pip install -U hatch hatchling
- name: build package
run: hatch build --clean
- name: install auto-changelog
run: npm install -g auto-changelog
run: npm install auto-changelog
- name: generate changelog
run: >-
auto-changelog -t keepachangelog
npx auto-changelog -t keepachangelog
--commit-limit 50 --backfill-limit 50
--ignore-commit-pattern '[Bb]ump version|[Uu]pdate changelog|[Mm]erge pull request'
@ -38,12 +44,6 @@ jobs:
id: release-notes
uses: olofvndrhr/releasenote-gen@v1
- name: install hatch
run: pip install -U hatch hatchling
- name: build package
run: hatch build --clean
- name: create github release
uses: ncipollo/release-action@v1
if: github.event_name != 'pull_request'

View file

@ -1,4 +1,4 @@
FROM lscr.io/linuxserver/netbox:4.0.7
FROM lscr.io/linuxserver/netbox:4.0.8
RUN pip install -U \
wheel \

View file

@ -19,7 +19,6 @@ show_system_info:
setup:
asdf install
lefthook install
create_venv:
@echo "creating venv"

View file

@ -46,7 +46,7 @@ packages = ["src/octodns_netbox_dns"]
python = "3.11"
dependencies = [
"pytest==8.2.2",
"coverage==7.6.0",
"coverage==7.6.1",
"octodns==1.9.1",
"octodns-spf==0.0.2",
]