Skip to content

Commit

Permalink
include shared function
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Jan 10, 2024
1 parent 07b4b95 commit b8966a2
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/live-testnet-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,12 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-sepolia
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
# load reusable functions
source ./.github/scripts/functions.sh

if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -373,6 +379,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-bsc-testnet
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -468,6 +477,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-optimism-sepolia
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -561,6 +573,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-arbitrum-sepolia
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -650,6 +665,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-base-goerli
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -738,6 +756,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-base-sepolia
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -831,6 +852,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-polygon-mumbai
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -924,6 +948,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-avalanche-fuji
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -1016,6 +1043,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-fantom-testnet
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -1105,6 +1135,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-celo-alfajores
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -1196,6 +1229,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-scroll-sepolia
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down Expand Up @@ -1285,6 +1321,9 @@ jobs:
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-linea-goerli
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
run: |
# load reusable functions
source ./.github/scripts/functions.sh
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down

0 comments on commit b8966a2

Please sign in to comment.