From 87dc5d73cbd8ff6791a58d9625431a81580021a7 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Tue, 12 Dec 2023 22:25:31 -0500 Subject: [PATCH] CI: Drop build_docs; we use RTD builds --- .circleci/config.yml | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fbc26008..060614f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,37 +58,6 @@ jobs: flags: unittests - build_docs: - docker: - - image: cimg/python:3.12 - auth: - username: $DOCKER_USER - password: $DOCKER_PAT - - environment: - - FSLOUTPUTTYPE: NIFTI - - SUBJECTS_DIR: /tmp/subjects - steps: - - checkout - - run: - name: Create subjects folder - command: mkdir -p $SUBJECTS_DIR - - run: - name: Install deps - command: | - python -m pip install --no-cache-dir -U pip - - run: - name: Install Nireports - command: | - python -m pip install .[docs] - - run: - name: Build only this commit - command: | - BRANCH=$( echo $CIRCLE_BRANCH | sed 's+/+_+g' ) - make -C docs SPHINXOPTS="-W" BUILDDIR="/tmp/docs" OUTDIR=${CIRCLE_TAG:-$BRANCH} html - - store_artifacts: - path: /tmp/docs - workflows: version: 2 build_test_deploy: @@ -102,11 +71,3 @@ workflows: branches: ignore: - /docs?\/.*/ - - - build_docs: - filters: - branches: - ignore: - - /tests?\/.*/ - tags: - only: /.*/