From 884c33d22c307d2f0ce7105a174edfe8b8bbcef2 Mon Sep 17 00:00:00 2001 From: Nathan McKimpson Date: Tue, 15 Apr 2025 17:21:42 -0700 Subject: [PATCH] Remove external CI config from GH project Signed-off-by: Nathan McKimpson --- .gitlab-ci.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 29aca28dc5..0000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,35 +0,0 @@ -default: - image: ${DOC_BUILD_IMAGE} - tags: - - os/linux - - type/docker - -stages: - - build - - deploy - -.sphinx-build: &sphinx-build - - cd docs - - uv run --group docs sphinx-build --fail-on-warning --builder html . _build/html - -build-docs: - stage: build - script: - - *sphinx-build - artifacts: - name: ${CI_PROJECT_NAME}-${CI_COMMIT_SHORT_SHA} - paths: - - docs/_build - -pages: - stage: deploy - needs: ["build-docs"] - script: - - echo "Publishing HTML to GitLab Pages" - - rm -rf public - - mkdir public - - cp -r docs/_build/html/* public/ - rules: - - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - - if: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH - environment: main