File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ concurrency:
1717
1818env :
1919 ENCLAVE_NAME : kurtosis-e2e
20+ POLYCLI_VERSION : v0.1.102
2021
2122jobs :
2223 build-bor :
@@ -146,6 +147,15 @@ jobs:
146147 export PRIV_KEY="0xd40311b5a5ca5eaeb48dfba5403bde4993ece8eccf4190e98e19fcd4754260ea"
147148 go run . --priv-key "$PRIV_KEY" --rpc-url "$RPC_URL" --log-req-res true
148149
150+ - name : Install polycli
151+ run : |
152+ tmp_dir=$(mktemp -d)
153+ curl -L https://github.com/0xPolygon/polygon-cli/releases/download/${{ env.POLYCLI_VERSION }}/polycli_${{ env.POLYCLI_VERSION }}_linux_amd64.tar.gz | tar -xz -C "$tmp_dir"
154+ mv "$tmp_dir"/* /usr/local/bin/polycli
155+ rm -rf "$tmp_dir"
156+ sudo chmod +x /usr/local/bin/polycli
157+ polycli version
158+
149159 - name : Run smoke tests
150160 working-directory : pos-workflows/tests
151161 run : bash ./kurtosis_smoke_test.sh
You can’t perform that action at this time.
0 commit comments