From 43fa4369191be2c20be15da8a49773a5343e2a63 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 29 Jul 2023 22:32:17 +0200 Subject: [PATCH] fix drone config --- .drone.jsonnet | 5 ----- .drone.yml | 12 +----------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index f06226e..23b2219 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -6,7 +6,6 @@ local PythonVersion(pyversion='3.8') = { }, commands: [ 'pip install poetry -qq', - 'poetry config experimental.new-installer false', 'poetry install --all-extras', 'poetry run pytest', ], @@ -24,7 +23,6 @@ local AnsibleVersion(version='devel') = { }, commands: [ 'pip install poetry -qq', - 'poetry config experimental.new-installer false', 'poetry install', 'poetry run pip install https://github.com/ansible/ansible/archive/' + gitversion + '.tar.gz --disable-pip-version-check', 'poetry run ansible --version', @@ -52,7 +50,6 @@ local PipelineLint = { commands: [ 'git fetch -tq', 'pip install poetry -qq', - 'poetry config experimental.new-installer false', 'poetry install --all-extras', 'poetry run yapf -dr ./plugins', ], @@ -66,7 +63,6 @@ local PipelineLint = { commands: [ 'git fetch -tq', 'pip install poetry -qq', - 'poetry config experimental.new-installer false', 'poetry install --all-extras', 'poetry run ruff ./plugins', ], @@ -136,7 +132,6 @@ local PipelineBuild = { 'GALAXY_VERSION=${DRONE_TAG##v}', "sed -i 's/version: 0.0.0/version: '\"$${GALAXY_VERSION:-0.0.0}\"'/g' galaxy.yml", 'pip install poetry -qq', - 'poetry config experimental.new-installer false', 'poetry install --all-extras', 'poetry run ansible-galaxy collection build --output-path dist/', ], diff --git a/.drone.yml b/.drone.yml index 9c36dd6..8ab7723 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,7 +12,6 @@ steps: commands: - git fetch -tq - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install --all-extras - poetry run yapf -dr ./plugins environment: @@ -23,7 +22,6 @@ steps: commands: - git fetch -tq - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install --all-extras - poetry run ruff ./plugins environment: @@ -48,7 +46,6 @@ steps: image: python:3.8 commands: - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install --all-extras - poetry run pytest environment: @@ -60,7 +57,6 @@ steps: image: python:3.9 commands: - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install --all-extras - poetry run pytest environment: @@ -72,7 +68,6 @@ steps: image: python:3.10 commands: - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install --all-extras - poetry run pytest environment: @@ -84,7 +79,6 @@ steps: image: python:3.11 commands: - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install --all-extras - poetry run pytest environment: @@ -117,7 +111,6 @@ steps: image: python:3.9 commands: - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install - poetry run pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check - poetry run ansible --version @@ -131,7 +124,6 @@ steps: image: python:3.9 commands: - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install - poetry run pip install https://github.com/ansible/ansible/archive/stable-2.14.tar.gz --disable-pip-version-check - poetry run ansible --version @@ -145,7 +137,6 @@ steps: image: python:3.9 commands: - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install - poetry run pip install https://github.com/ansible/ansible/archive/stable-2.13.tar.gz --disable-pip-version-check - poetry run ansible --version @@ -179,7 +170,6 @@ steps: - GALAXY_VERSION=${DRONE_TAG##v} - "sed -i 's/version: 0.0.0/version: '\"$${GALAXY_VERSION:-0.0.0}\"'/g' galaxy.yml" - pip install poetry -qq - - poetry config experimental.new-installer false - poetry install --all-extras - poetry run ansible-galaxy collection build --output-path dist/ @@ -289,6 +279,6 @@ depends_on: --- kind: signature -hmac: 984617116d21136e915bc5f1af838be713fe0f3442645a45ec7637e13ab890d1 +hmac: 440b43b8ce15d152c7abdd936c77b25aeb978c5f63e7f7ac9895063afbdba384 ...