From 93b73c746a9842dd779e25c8f5b99fc5a6f6e960 Mon Sep 17 00:00:00 2001 From: Atharva Arya Date: Fri, 12 Jul 2024 19:02:08 +0530 Subject: [PATCH] Os fix --- .github/workflows/main.yml | 1 + .github/workflows/new_tests.yml | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2c24f1a6009..3fa8af789dd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,4 +34,5 @@ jobs: uses: ./.github/workflows/new_tests.yml # calls the one above ^ with: run_label: ${{ matrix.label }} + run_os: ${{ matrix.os }} secrets: inherit \ No newline at end of file diff --git a/.github/workflows/new_tests.yml b/.github/workflows/new_tests.yml index 96d8e6e159d..1adb6d63d49 100644 --- a/.github/workflows/new_tests.yml +++ b/.github/workflows/new_tests.yml @@ -10,6 +10,9 @@ on: run_label: required: true type: string + run_os: + required: true + type: string # push: # branches: @@ -34,13 +37,11 @@ env: defaults: run: shell: bash -l {0} - - - + jobs: non-continuum: name: non-continuum-${{ inputs.run_label }} - runs-on: ${{ inputs.run_label }} + runs-on: ${{ inputs.run_os }} steps: - name: Setup tardis uses: ./.github/actions/setup_tardis