Skip to content

Commit

Permalink
Disable precompile test for the moment (#3099)
Browse files Browse the repository at this point in the history
* add name back

* disable precompile test for the moment
  • Loading branch information
BillyWooo authored Sep 27, 2024
1 parent b4df5a6 commit 9ba4aa9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/create-release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
- rococo
- paseo
- litentry
name: ${{ matrix.chain }}
steps:
- name: Checkout codes on ${{ env.RELEASE_TAG }}
uses: actions/checkout@v4
Expand Down Expand Up @@ -303,6 +304,7 @@ jobs:
matrix:
chain:
- litentry
name: ${{ matrix.chain }}
steps:
- name: Checkout codes
uses: actions/checkout@v4
Expand All @@ -322,7 +324,7 @@ jobs:
- name: Enable corepack and pnpm
run: corepack enable && corepack enable pnpm

- name: Run ts tests for parachain
- name: Run ts tests for ${{ matrix.chain }}
timeout-minutes: 30
run: |
make test-ts-${{ matrix.chain }}
Expand All @@ -345,7 +347,7 @@ jobs:
run: |
docker push litentry/litentry-parachain:${{ env.RELEASE_TAG }}
- name: Clean up for parachain
- name: Clean up for ${{ matrix.chain }}
if: ${{ always() }}
run: |
make clean-network
Expand Down
4 changes: 2 additions & 2 deletions parachain/scripts/run-ts-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ case "$1" in
litentry|rococo|paseo) export PARACHAIN_TYPE=$1 ;;
*) echo "usage: ./$0 litentry [bridge] [evm]"; exit 1 ;;
esac

if [ "$2" = "bridge" ]; then
bridge=true
fi
Expand All @@ -36,5 +36,5 @@ fi
if $evm; then
pnpm run test-evm-transfer 2>&1 | tee -a "$LITENTRY_PARACHAIN_DIR/parachain_ci_test.log"
pnpm run test-evm-contract 2>&1 | tee -a "$LITENTRY_PARACHAIN_DIR/parachain_ci_test.log"
pnpm run test-precompile-contract 2>&1 | tee -a "$LITENTRY_PARACHAIN_DIR/parachain_ci_test.log"
# pnpm run test-precompile-contract 2>&1 | tee -a "$LITENTRY_PARACHAIN_DIR/parachain_ci_test.log"
fi

0 comments on commit 9ba4aa9

Please sign in to comment.