Skip to content

Commit

Permalink
Remove unused input variables in e2e related GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
janneronkko committed Jan 13, 2025
1 parent e2683f1 commit c87bc14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
5 changes: 0 additions & 5 deletions github-actions/run-ci/action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: "Run CI workflow"
description: "Setup the e2e environment and run cypress tests in it"
inputs:
bundle_version:
description: Version of the docker-compose bundle to use (= github release version)
required: false
default: "e2e-docker-compose"
bundle_repo:
description: Repository to retrieve the bundle from
required: false
Expand Down Expand Up @@ -124,7 +120,6 @@ runs:
with:
ui_version: "${{ inputs.ui_version }}"
cypress_version: "${{ inputs.cypress_version }}"
bundle_version: "${{ inputs.bundle_version }}"
bundle_repo: "${{ inputs.bundle_repo }}"
hasura_version: "${{ inputs.hasura_version }}"
auth_version: "${{ inputs.auth_version }}"
Expand Down
10 changes: 1 addition & 9 deletions github-actions/setup-e2e-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,6 @@ description:
"Builds e2e environment with docker-compose and tests that services are
running."
inputs:
bundle_version:
description: Version of the docker-compose bundle to use (= github release version)
required: false
default: "e2e-docker-compose"
bundle_repo:
description: Repository to retrieve the bundle from
required: false
default: "HSLdevcom/jore4-tools"
ui_version:
description:
Version of ui to use (docker image tag). Set to "" if using the default
Expand Down Expand Up @@ -106,7 +98,7 @@ runs:
- name: Download and extract e2e docker-compose release
run: |
mkdir -p ${{ github.workspace }}/docker
curl -L https://github.com/HSLdevcom/jore4-tools/releases/download/${{ inputs.bundle_version }}/e2e-docker-compose.tar.gz --silent -o compose-bundle.tar.gz
curl -L https://github.com/HSLdevcom/jore4-tools/releases/download/e2e-docker-compose/e2e-docker-compose.tar.gz --silent -o compose-bundle.tar.gz
tar -xzf compose-bundle.tar.gz -C ${{ github.workspace }}/docker/ | bash
rm compose-bundle.tar.gz
shell: bash
Expand Down

0 comments on commit c87bc14

Please sign in to comment.