From 03a85ccf60883c3a812e72865e591e2cdafa1ce8 Mon Sep 17 00:00:00 2001 From: "Jessica Zhang (NY)" Date: Wed, 23 Oct 2024 21:17:07 -0400 Subject: [PATCH] Remove CircleCI config --- .github/workflows/core_tests.yml | 4 +- .github/workflows/plugin_tests.yml | 78 ------------------------------ 2 files changed, 2 insertions(+), 80 deletions(-) delete mode 100644 .github/workflows/plugin_tests.yml diff --git a/.github/workflows/core_tests.yml b/.github/workflows/core_tests.yml index 1c464554b7..b97f5a88be 100644 --- a/.github/workflows/core_tests.yml +++ b/.github/workflows/core_tests.yml @@ -22,8 +22,8 @@ jobs: export NOX_PYTHON_VERSIONS=${{ matrix.py_version }} conda activate hydra pip install nox dataclasses --progress-bar off - nox -s lint test_tools test_core \ - test_jupyter_notebooks lint_plugins test_plugins test_plugins_vs_core -ts + nox -s lint test_tools test_core \ + test_jupyter_notebooks lint_plugins test_plugins test_plugins_vs_core -ts test_linux: runs-on: ubuntu-latest strategy: diff --git a/.github/workflows/plugin_tests.yml b/.github/workflows/plugin_tests.yml deleted file mode 100644 index df6d0b16ee..0000000000 --- a/.github/workflows/plugin_tests.yml +++ /dev/null @@ -1,78 +0,0 @@ -name: facebookresearch/hydra/plugin_tests -on: - push: - inputs: - test_plugins: - required: true - default: hydra_rq_launcher,hydra_ax_sweeper,hydra_submitit_launcher,hydra_nevergrad_sweeper -jobs: - test_plugin_linux: - runs-on: ubuntu-latest - strategy: - matrix: - py_version: - - '3.8' - - '3.9' - - '3.10' - - '3.11' - test_plugin: - - "${{ inputs.test_plugins }}" - steps: - - uses: actions/checkout@v4.1.0 - - uses: "./.github/actions/linux" - with: - py_version: "${{ matrix.py_version }}" - - name: "${{ matrix.test_plugin }}" - run: |- - export PATH="$HOME/miniconda3/envs/hydra/bin:$PATH" - export NOX_PYTHON_VERSIONS=${{ matrix.py_version }} - export PLUGINS=${{ matrix.test_plugin }} - pip install nox dataclasses --progress-bar off - nox -s lint_plugins test_plugins test_plugins_vs_core -ts - test_plugin_macos: - runs-on: macos-latest - strategy: - matrix: - py_version: - - '3.8' - - '3.9' - - '3.10' - - '3.11' - test_plugin: - - "${{ inputs.test_plugins }}" - steps: - - uses: actions/checkout@v4.1.0 - - uses: "./.github/actions/macos" - with: - py_version: "${{ matrix.py_version }}" - - name: "${{ matrix.test_plugin }}" - run: |- - source $HOME/.bash_profile - export NOX_PYTHON_VERSIONS=${{ matrix.py_version }} - export PLUGINS=${{ matrix.test_plugin }} - conda activate hydra - pip install nox dataclasses --progress-bar off - nox -s lint_plugins test_plugins test_plugins_vs_core -ts - test_plugin_win: - runs-on: windows-latest - strategy: - matrix: - py_version: - - '3.8' - - '3.9' - - '3.10' - - '3.11' - test_plugin: - - "${{ inputs.test_plugins }}" - steps: - - uses: actions/checkout@v4.1.0 - - uses: "./.github/actions/windows" - - name: "${{ matrix.test_plugin }}" - run: |- - $env:NOX_PYTHON_VERSIONS="${{ matrix.py_version }}" - $env:ConEmuDefaultCp=65001 - $env:PYTHONIOENCODING="utf_8" - $env:PLUGINS="${{ matrix.test_plugin }}" - conda activate hydra - nox -s lint_plugins test_plugins test_plugins_vs_core -ts - exit $LASTEXITCODE