From 9b13421c4594b55789044d0ee78dc2ee6529cd6c Mon Sep 17 00:00:00 2001 From: dhuangnm Date: Fri, 13 Sep 2024 12:40:57 -0400 Subject: [PATCH] test more configs --- .github/actions/test/action.yml | 3 ++- .github/workflows/trigger-all.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 44d04b41..24f6bb37 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -17,7 +17,8 @@ runs: with: venv: ${{ inputs.venv }} name: compressed - extra: "[dev,accelerate]" + #extra: "[dev,accelerate]" + extra: "[dev]" - name: test id: test diff --git a/.github/workflows/trigger-all.yml b/.github/workflows/trigger-all.yml index a7a7274a..30a07496 100644 --- a/.github/workflows/trigger-all.yml +++ b/.github/workflows/trigger-all.yml @@ -31,14 +31,14 @@ jobs: BUILD-TEST: uses: ./.github/workflows/build-test.yml - name: ${{ inputs.wf_category || (github.event.schedule == '30 0 * * *' && 'NIGHTLY') }} + name: ${{ inputs.wf_category || 'NIGHTLY' }} with: - #wf_category: ${{ inputs.wf_category || (github.event.schedule == '30 0 * * *' && 'NIGHTLY') }} - wf_category: ${{ 'NIGHTLY' || (github.event.schedule == '30 0 * * *' && 'NIGHTLY') }} + wf_category: ${{ inputs.wf_category || 'NIGHTLY' }} gitref: ${{ inputs.gitref || 'auto' }} push_to_pypi: ${{ inputs.push_to_pypi || false }} - - # nightly and weekly tests share the same configs - test_configs: '[{"python":"3.10.12","label":"ubuntu-20.04","timeout":"60"}]' + test_configs: '[{"python":"3.11.4","label":"ubuntu-22.04","timeout":"60"}, + {"python":"3.10.12","label":"ubuntu-20.04","timeout":"60"}, + {"python":"3.9.17","label":"k8s-a100-solo","timeout":"60"}, + {"python":"3.8.17","label":"k8s-a100-duo","timeout":"60"}]' secrets: inherit