From: Aleš Mrázek Date: Thu, 17 Jul 2025 11:21:52 +0000 (+0200) Subject: .gitlab-ci.yml: removed OBS X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7732253ecf5f875c999d77ca5463bc1bdc0bda0;p=thirdparty%2Fknot-resolver.git .gitlab-ci.yml: removed OBS We do not use OBS for version 6. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a28d9cfa8..503ad4e17 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -633,43 +633,6 @@ nightly:copy: - '[ "x${STATUS}" == "x200" ] || { cat ${tmp_file}; rm ${tmp_file}; exit 1; }' - 'rm ${tmp_file}' -obs:trigger: &obs_trigger - stage: deploy - only: - variables: - - $OBS_REPO - dependencies: # wait for previous stages to finish - - archive - environment: - name: OBS/$OBS_REPO - url: https://build.opensuse.org/package/show/home:CZ-NIC:$OBS_REPO/knot-resolver - tags: - - condor - allow_failure: false # required to make when: manual action blocking - script: - - python3 -m venv ./venv - - source ./venv/bin/activate - - pip install --upgrade pip - - pip install apkg - - scripts/ci/make-obs.sh - - echo y | scripts/ci/build-in-obs.sh $OBS_REPO - -obs:release: - <<: *obs_trigger - only: - - tags - variables: - OBS_REPO: knot-resolver-latest - when: manual - -obs:odvr: - <<: *obs_trigger - stage: pkg # last stage to ensure it doesn't block anything - only: - - tags - variables: - OBS_REPO: knot-resolver-odvr - when: manual # }}} # pkg {{{