From 0da18df8732c6973f3d80f3b7e30e0926c587d73 Mon Sep 17 00:00:00 2001 From: "Sara A. Miskovich" Date: Mon, 28 Oct 2024 13:40:23 -0700 Subject: [PATCH] Remove conda test build --- .github/workflows/test.yml | 39 -------------------------------------- 1 file changed, 39 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c651e5..0f1b73e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,42 +42,3 @@ jobs: run: | git fetch --prune --unshallow --tags sudo python -m build - - test-build-conda: - runs-on: ubuntu-latest - # sets default shell to remove need for source to run the conda shell - defaults: - run: - shell: bash -l {0} - steps: - - name: Checkout Repository - uses: actions/checkout@v3 - - - name: Install Python - uses: actions/setup-python@v3 - with: - python-version: "3.10" - - - name: Install Miniconda - uses: conda-incubator/setup-miniconda@v2 - with: - auto-activate-base: true - activate-environment: "" - miniconda-version: "latest" - - - name: Install the Conda Dependencies - run: | - conda config --set always_yes yes --set auto_update_conda false - conda update conda - conda install -n base conda-libmamba-solver - conda install python=3.10 conda-build colorama pip ruamel ruamel.yaml rich jsonschema -c conda-forge - git fetch --prune --unshallow --tags - pip install -e . - - - name: Build the Anaconda Package - id: condabuild - run: | - conda install anaconda-client - conda config --set anaconda_upload no --set solver libmamba - VERSION_FROM_GIT_TAG=$(git tag --list "v*[0-9]" --sort=version:refname | tail -1 | cut -c 2-) conda build . -c conda-forge -c stanfordcvxgrp - echo "gitversion=$(git tag --list "v*[0-9]" --sort=version:refname | tail -1 | cut -c 2-)" >> $GITHUB_OUTPUT \ No newline at end of file