diff --git a/.github/workflows/itest-noscience.yml b/.github/workflows/itest-noscience.yml index d9f2aa9a..030a61ff 100644 --- a/.github/workflows/itest-noscience.yml +++ b/.github/workflows/itest-noscience.yml @@ -9,7 +9,6 @@ jobs: call-workflow-passing-data: uses: ./.github/workflows/itest.yml with: - minimal: true noscience: true secrets: registry_username: ${{ secrets.REGISTRY_USERNAME }} diff --git a/.github/workflows/itest-science.yml b/.github/workflows/itest-science.yml index 529652e8..8be730bf 100644 --- a/.github/workflows/itest-science.yml +++ b/.github/workflows/itest-science.yml @@ -14,7 +14,6 @@ jobs: call-workflow-passing-data: uses: ./.github/workflows/itest.yml with: - minimal: false noscience: false secrets: registry_username: ${{ secrets.REGISTRY_USERNAME }} diff --git a/.github/workflows/itest.yml b/.github/workflows/itest.yml index 337cf20d..6ea1b627 100644 --- a/.github/workflows/itest.yml +++ b/.github/workflows/itest.yml @@ -3,9 +3,6 @@ name: "Reusable workflow for Fink self-hosted e2e tests" on: workflow_call: inputs: - minimal: - required: true - type: string noscience: required: true type: string @@ -18,7 +15,6 @@ env: CIUXCONFIG: /tmp/ciux.sh CIUX_VERSION: dev GHA_BRANCH_NAME: ${{ github.head_ref || github.ref_name }} - MINIMAL: ${{ inputs.minimal }} NOSCIENCE: ${{ inputs.noscience }} # Override the self-hosted runner value POD_NAMESPACE: default @@ -43,7 +39,7 @@ jobs: - name: Build image if not present in registry run: | SUFFIX_OPT="" - if [ NOSCIENCE = true ]; then + if [ $NOSCIENCE = true ]; then SUFFIX_OPT="--suffix noscience" fi if $IMAGE=$(ciux get image --check $PWD $SUFFIX_OPT)