Skip to content

Fix trigger and variables #4

Fix trigger and variables

Fix trigger and variables #4

Workflow file for this run

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: maxim-lobanov/setup-xcode@v1.6.0
with:
xcode-version: latest-stable
- uses: "./.github/actions/macos"
with:
py_version: "${{ matrix.py_version }}"
- name: "${{ matrix.test_plugin }}"
run: |-
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:
- 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