diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 30671b7..0000000 --- a/.editorconfig +++ /dev/null @@ -1,22 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Tobias Schmidl -# -# SPDX-License-Identifier: AGPL-3.0-or-later - -# EditorConfig is awesome: https://EditorConfig.org - -# top-most EditorConfig file -root = true - -[*] -indent_style = space -indent_size = 4 -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true - -[*.{yaml,yml}] -indent_size = 2 - -[Makefile] -indent_style = tab diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d943121..a9145b3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,12 +16,4 @@ repos: rev: v2.1.0 hooks: - id: reuse -- repo: https://github.com/editorconfig-checker/editorconfig-checker.python - rev: '2.7.2' - hooks: - - id: editorconfig-checker -- repo: https://git.schmidl.dev/schtobia/woodpecker-lint - rev: 1.0.0 - hooks: - - id: woodpecker-lint ... diff --git a/.woodpecker.yml b/.woodpecker.yml deleted file mode 100644 index c82e8fa..0000000 --- a/.woodpecker.yml +++ /dev/null @@ -1,24 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Tobias Schmidl -# -# SPDX-License-Identifier: AGPL-3.0-or-later - ---- -steps: - docker-build: - image: woodpeckerci/plugin-docker-buildx - settings: - repo: git.schmidl.dev/${CI-REPO_OWNER}/buildimage - registry: git.schmidl.dev - dry_run: true - output: type=oci,dest=${CI_REPO_OWNER}-buildimage.tar - publish-next-agent: - image: woodpeckerci/plugin-docker-buildx - secrets: [docker_username, docker_password] - settings: - repo: git.schmidl.dev/${CI-REPO_OWNER}/buildimage - dockerfile: dockerfile - platforms: linux/amd64,linux/arm64/v8 - when: - branch: ${CI_REPO_DEFAULT_BRANCH} - event: push -... diff --git a/dockerfile b/dockerfile index 48ec00a..0f4b951 100644 --- a/dockerfile +++ b/dockerfile @@ -14,8 +14,6 @@ org.opencontainers.image.title=buildimage \ org.opencontainers.image.source="https://git.schmidl.dev/schtobia/buildimage" \ org.opencontainers.image.url="https://git.schmidl.dev/schtobia/buildimage" -# editorconfig-checker-disable - RUN apt update \ && apt install --assume-yes --no-install-recommends \ build-essential \ @@ -23,8 +21,6 @@ RUN apt update \ git \ && find /var/lib/apt -type f -delete -# editorconfig-checker-enable - RUN useradd -rm builder USER builder