From 52acf7391146a0952695e6a06c41d10077f169fb Mon Sep 17 00:00:00 2001 From: Steven Pritchard Date: Tue, 21 Oct 2025 15:03:21 -0500 Subject: [PATCH] [puppetsync] Drop GitLab CI configuration Drop unmaintained GitLab CI configuration --- .gitlab-ci.yml | 51 -------------------------------------------------- Gemfile | 3 ++- renovate.json | 4 +++- 3 files changed, 5 insertions(+), 53 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 5e2a8c0f..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,51 +0,0 @@ ---- - -image: python:3.13-alpine - -variables: - BUILD_PDF: 'no' - -default: - tags: - - docker - before_script: - - 'apk add zlib-dev jpeg-dev musl-dev gcc' - - 'python3 -m pip install --user -r requirements.txt' - -unit-simpver: - stage: test - script: - - 'python3 -m pip install --user --upgrade pytest' - - 'export PATH="$HOME/.local/bin:$PATH"' - - 'pytest -x --capture=no docs/conflib/get_simp_version_test.py' - -unit-relmap: - stage: test - script: - - 'python3 -m pip install --user --upgrade pytest' - - 'export PATH="$HOME/.local/bin:$PATH"' - # This test is forced to pass because it can't seem to download the release_mapping.yaml - # on the master branch. It always returns a 403 error, even if it's given a token. - - 'pytest -x --capture=no docs/conflib/release_mapping_test.py' - allow_failure: true - -build-html: - stage: test - script: - - 'export PATH="$HOME/.local/bin:$PATH"' - - 'sphinx-build -n -b html -d sphinx_cache docs html' - -build-pdf: - stage: test - script: - - 'export PATH="$HOME/.local/bin:$PATH"' - - 'sphinx-build -E -n -b pdf -d sphinx_cache docs pdf' - rules: - - if: '$BUILD_PDF == "yes"' - when: always - -link-check: - stage: test - script: - - 'export PATH="$HOME/.local/bin:$PATH"' - - 'sphinx-build -E -n -b linkcheck docs linkcheck || ( cat linkcheck/output.txt ; false )' diff --git a/Gemfile b/Gemfile index b160188a..1c7d8064 100644 --- a/Gemfile +++ b/Gemfile @@ -8,6 +8,7 @@ gem_sources = ENV.key?('SIMP_GEM_SERVERS') ? ENV['SIMP_GEM_SERVERS'].split(/[, gem_sources.each { |gem_source| source gem_source } gem 'rake' -gem 'simp-rake-helpers', ENV.fetch('SIMP_RAKE_HELPERS_VERSION', ['>= 5.0.2', '< 6']) +# renovate: datasource=rubygems versioning=ruby +gem 'simp-rake-helpers', ENV.fetch('SIMP_RAKE_HELPERS_VERSION', '~> 5.24.0') gem 'pry' gem 'net-telnet', ['< 0.2.0'] diff --git a/renovate.json b/renovate.json index 5db72dd6..c1376b02 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,8 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:recommended" + "config:recommended", + "github>simp/renovate-config", + "github>simp/renovate-config:ruby.json" ] }