From dbc13a844e2fe1a298dd85d528a70bc8ddc38369 Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Fri, 17 Apr 2026 15:27:02 -0700 Subject: [PATCH] clean up files --- .github/actions/sphinx_steps/action.yml | 28 -------------------- .github/actions/upload_coverage/action.yml | 27 ------------------- .github/workflows/extended_tests_jobs.yml | 1 - .github/workflows/packaging_jobs.yml | 3 +-- .github/workflows/test_and_package_stage.yml | 1 - 5 files changed, 1 insertion(+), 59 deletions(-) delete mode 100644 .github/actions/sphinx_steps/action.yml delete mode 100644 .github/actions/upload_coverage/action.yml diff --git a/.github/actions/sphinx_steps/action.yml b/.github/actions/sphinx_steps/action.yml deleted file mode 100644 index 56d67399d..000000000 --- a/.github/actions/sphinx_steps/action.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: sphinx_steps -runs: - using: composite - steps: - - name: Build Sphinx Documentation - run: |- - set -e - sudo apt-get update - sudo apt-get install -y --no-install-recommends libaugeas-dev - FINAL_STATUS=0 - declare -a FAILED_BUILDS - tools/venv.py - source venv/bin/activate - for doc_path in */docs - do - echo "" - echo "##[group]Building $doc_path" - if ! sphinx-build -W --keep-going -b html $doc_path $doc_path/_build/html; then - FINAL_STATUS=1 - FAILED_BUILDS[${#FAILED_BUILDS[@]}]="${doc_path%/docs}" - fi - echo "##[endgroup]" - done - if [[ $FINAL_STATUS -ne 0 ]]; then - echo "##[error]The following builds failed: ${FAILED_BUILDS[*]}" - exit 1 - fi - shell: bash diff --git a/.github/actions/upload_coverage/action.yml b/.github/actions/upload_coverage/action.yml deleted file mode 100644 index f051947b1..000000000 --- a/.github/actions/upload_coverage/action.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: upload_coverage -runs: - using: composite - steps: - - name: Upload coverage data - if: env.uploadCoverage == true && (startsWith(matrix.TOXENV, 'cover') || startsWith(matrix.TOXENV, 'integration')) - run: |- - python3 tools/pip_install.py -I coverage - case "${{ runner.os }}" in - Darwin) - CODECOV_URL="https://uploader.codecov.io/latest/macos/codecov" - ;; - Linux) - CODECOV_URL="https://uploader.codecov.io/latest/linux/codecov" - ;; - Windows_NT) - CODECOV_URL="https://uploader.codecov.io/latest/windows/codecov.exe" - ;; - *) - echo "Unexpected OS" - exit 0 - esac - curl --retry 3 -o codecov "$CODECOV_URL" - chmod +x codecov - coverage xml - ./codecov || echo "Uploading coverage data failed" - shell: bash diff --git a/.github/workflows/extended_tests_jobs.yml b/.github/workflows/extended_tests_jobs.yml index 804ab49e2..6e540ed4a 100644 --- a/.github/workflows/extended_tests_jobs.yml +++ b/.github/workflows/extended_tests_jobs.yml @@ -1,4 +1,3 @@ -# Environment variables defined in a calling workflow are not accessible to this reusable workflow. Refer to the documentation for further details on this limitation. name: Extended tests jobs on: workflow_call: diff --git a/.github/workflows/packaging_jobs.yml b/.github/workflows/packaging_jobs.yml index db46f3696..6644daa4f 100644 --- a/.github/workflows/packaging_jobs.yml +++ b/.github/workflows/packaging_jobs.yml @@ -1,5 +1,4 @@ -# Environment variables defined in a calling workflow are not accessible to this reusable workflow. Refer to the documentation for further details on this limitation. -name: packaging_jobs +name: Packaging jobs on: workflow_call: inputs: diff --git a/.github/workflows/test_and_package_stage.yml b/.github/workflows/test_and_package_stage.yml index 97ea05203..9d6ea700d 100644 --- a/.github/workflows/test_and_package_stage.yml +++ b/.github/workflows/test_and_package_stage.yml @@ -1,4 +1,3 @@ -# Environment variables defined in a calling workflow are not accessible to this reusable workflow. Refer to the documentation for further details on this limitation. name: Test and package stage on: workflow_call: