Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Jan 10, 2024
1 parent 6e46f46 commit 52e7533
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/live-testnet-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ jobs:
BASE64_NETWORK_CONFIG=$(cat network_config.toml | base64 -w 0)
echo ::add-mask::$BASE64_NETWORK_CONFIG
echo "base64_network_config=$BASE64_NETWORK_CONFIG" >> $GITHUB_OUTPUT
echo "Length after base64: ${#BASE64_NETWORK_CONFIG}"
# End Build Test Dependencies

Expand Down Expand Up @@ -318,7 +319,12 @@ jobs:
PYROSCOPE_SERVER: ${{ secrets.QA_PYROSCOPE_INSTANCE }}
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-sepolia
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
BASE64_NETWORK_CONFIG: ${{ needs.build-tests.outputs.base64_network_config }}
run: |
echo "Lenght of top level var: ${#BASE64_NETWORK_CONFIG}"
X=${{ needs.build-tests.outputs.base64_network_config }}
echo "Lenght of in-script var: ${#X}"
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down

0 comments on commit 52e7533

Please sign in to comment.