Skip to content

Commit

Permalink
chore: remove unrequired fields
Browse files Browse the repository at this point in the history
  • Loading branch information
chatton committed Nov 12, 2024
1 parent 0e67c14 commit a9320b2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 34 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/e2e-compatibility-workflow-call.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ on:
description: 'The test file'
required: true
type: string
test-chain:
description: 'The chain name chain-a or chain-b'
required: true
type: string
release-version:
description: 'the release tag, e.g. release-v7.3.0'
required: true
Expand All @@ -25,9 +21,9 @@ jobs:
with:
python-version: '3.10'
- run: pip install -r requirements.txt
- uses: andstor/file-existence-action@v3
with:
files: '.github/compatibility-test-matrices/${{ inputs.test-file-directory }}/${{ inputs.test-suite }}.json'
# - uses: andstor/file-existence-action@v3
# with:
# files: '.github/compatibility-test-matrices/${{ inputs.test-file-directory }}/${{ inputs.test-suite }}.json'
- run: |
# use jq -c to compact the full json contents into a single line. This is required when using the json body
# to create the matrix in the following job.
Expand Down
37 changes: 10 additions & 27 deletions .github/workflows/e2e-compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
IBC_GO_VERSION: ${{ inputs.ibc-go-version || 'latest' }}

jobs:
determine-test-directory:
determine-image-tag:
runs-on: ubuntu-latest
outputs:
test-directory: ${{ steps.set-test-dir.outputs.test-directory }}
Expand Down Expand Up @@ -88,42 +88,25 @@ jobs:
# docker_tag="$(echo ${{ matrix.release-branch }} | sed 's/[^a-zA-Z0-9\.]/-/g')"
# docker inspect "${REGISTRY}/${ORG}/${IMAGE_NAME}:$docker_tag"

transfer-chain-a:
transfer-base-test:
needs:
- build-release-images
- determine-test-directory
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/base_test.go"
release-version: "${{ needs.determine-test-directory.outputs.test-directory }}"
release-version: "${{ needs.determine-image-tag.outputs.test-directory }}"

# transfer-chain-b:
# transfer-authz-test:
# needs:
# - build-release-images
# - determine-test-directory
# - determine-image-tag
# uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
# with:
# test-file: "e2e/tests/transfer/base_test.go"
# test-chain: "chain-b"
# release-version: "${{ needs.determine-test-directory.outputs.test-directory }}"
#
# transfer-authz-chain-a:
# needs:
# - build-release-images
# - determine-test-directory
# uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
# with:
# test-file-directory: "${{ needs.determine-test-directory.outputs.test-directory }}"
# test-suite: "transfer-authz-chain-a"
#
# transfer-authz-chain-b:
# needs:
# - build-release-images
# - determine-test-directory
# uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
# with:
# test-file-directory: "${{ needs.determine-test-directory.outputs.test-directory }}"
# test-suite: "transfer-authz-chain-b"
# test-file: "e2e/tests/transfer/authz_test.go"
# release-version: "${{ needs.determine-image-tag.outputs.test-directory }}"


#
# transfer-v2-forwarding-chain-a:
# needs:
Expand Down

0 comments on commit a9320b2

Please sign in to comment.