Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump epam/ai-dial-ci from 1.10.2 to 1.11.0 #212

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-title-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ on:

jobs:
pr-title-check:
uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.11.0
secrets:
ACTIONS_BOT_TOKEN: ${{ secrets.ACTIONS_BOT_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
run_tests:
uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@1.11.0
secrets: inherit
with:
python_version: 3.8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
release:
uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@1.11.0
secrets: inherit
with:
python_version: 3.8
Expand Down
22 changes: 11 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
VENV ?= .venv
POETRY ?= ${VENV}/bin/poetry
VENV_DIR ?= .venv
POETRY ?= $(VENV_DIR)/bin/poetry
POETRY_VERSION ?= 1.8.5

all: build

init_env:
python -m venv ${VENV}
${VENV}/bin/pip install poetry==${POETRY_VERSION} --quiet
python -m venv $(VENV_DIR)
$(VENV_DIR)/bin/pip install poetry==$(POETRY_VERSION) --quiet

install: init_env
${POETRY} install --all-extras
$(POETRY) install --all-extras

build: install
${POETRY} build
$(POETRY) build

clean:
rm -rf $$(${POETRY} env info --path)
rm -rf $$($(POETRY) env info --path)
rm -rf .nox
rm -rf .pytest_cache
rm -rf dist
find . -type d -name __pycache__ | xargs rm -r

publish: build
${POETRY} publish -u __token__ -p ${PYPI_TOKEN} --skip-existing
$(POETRY) publish -u __token__ -p $(PYPI_TOKEN) --skip-existing

lint: install
${POETRY} run nox -s lint
$(POETRY) run nox -s lint

format: install
${POETRY} run nox -s format
$(POETRY) run nox -s format

test: install
${POETRY} run nox -s test $(if $(PYTHON),--python=$(PYTHON),)
$(POETRY) run nox -s test $(if $(PYTHON),--python=$(PYTHON),)

benchmark: install
python -m benchmark.benchmark_merge_chunks
Expand Down
Loading