Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update current feature
Browse files Browse the repository at this point in the history
Your Name committed Jan 25, 2024
1 parent 369cb08 commit 0d81702
Showing 3 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/itest-noscience.yml
Original file line number Diff line number Diff line change
@@ -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 }}
1 change: 0 additions & 1 deletion .github/workflows/itest-science.yml
Original file line number Diff line number Diff line change
@@ -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 }}
6 changes: 1 addition & 5 deletions .github/workflows/itest.yml
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 0d81702

Please sign in to comment.