]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
.gitlab-ci.yml: removed OBS
authorAleš Mrázek <ales.mrazek@nic.cz>
Thu, 17 Jul 2025 11:21:52 +0000 (13:21 +0200)
committerAleš Mrázek <ales.mrazek@nic.cz>
Thu, 17 Jul 2025 11:21:52 +0000 (13:21 +0200)
We do not use OBS for version 6.

.gitlab-ci.yml

index a28d9cfa8d9a412acd60ba126b0c1b1e33c9316b..503ad4e17b22d2d9f315166ef0954c9fb97f21e4 100644 (file)
@@ -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 {{{