Skip to content

Commit c33fe34

Browse files
committed
skip for CI
1 parent 500fa6e commit c33fe34

File tree

2 files changed

+22
-16
lines changed

2 files changed

+22
-16
lines changed

scripts/cli/playground

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15879,16 +15879,19 @@ playground_run_command() {
1587915879
fi
1588015880
check_for_ec2_instance_running
1588115881

15882-
if [[ $test_file == *"ccloud"* ]]
15882+
if [ -z "$GITHUB_RUN_NUMBER" ]
1588315883
then
15884-
if [ -f /tmp/ccloud-costs-history.txt ]
15885-
then
15886-
log "📅💰 monthly ccloud costs"
15887-
cat /tmp/ccloud-costs-history.txt
15888-
fi
15889-
if [ -f /tmp/ccloud-costs-history-detailed.txt ]
15884+
if [[ $test_file == *"ccloud"* ]]
1589015885
then
15891-
log "👀 if you want more details, open /tmp/ccloud-costs-history-detailed.txt file"
15886+
if [ -f /tmp/ccloud-costs-history.txt ]
15887+
then
15888+
log "📅💰 monthly ccloud costs"
15889+
cat /tmp/ccloud-costs-history.txt
15890+
fi
15891+
if [ -f /tmp/ccloud-costs-history-detailed.txt ]
15892+
then
15893+
log "👀 if you want more details, open /tmp/ccloud-costs-history-detailed.txt file"
15894+
fi
1589215895
fi
1589315896
fi
1589415897

scripts/cli/src/commands/run.sh

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1587,16 +1587,19 @@ else
15871587
fi
15881588
check_for_ec2_instance_running
15891589

1590-
if [[ $test_file == *"ccloud"* ]]
1590+
if [ -z "$GITHUB_RUN_NUMBER" ]
15911591
then
1592-
if [ -f /tmp/ccloud-costs-history.txt ]
1593-
then
1594-
log "📅💰 monthly ccloud costs"
1595-
cat /tmp/ccloud-costs-history.txt
1596-
fi
1597-
if [ -f /tmp/ccloud-costs-history-detailed.txt ]
1592+
if [[ $test_file == *"ccloud"* ]]
15981593
then
1599-
log "👀 if you want more details, open /tmp/ccloud-costs-history-detailed.txt file"
1594+
if [ -f /tmp/ccloud-costs-history.txt ]
1595+
then
1596+
log "📅💰 monthly ccloud costs"
1597+
cat /tmp/ccloud-costs-history.txt
1598+
fi
1599+
if [ -f /tmp/ccloud-costs-history-detailed.txt ]
1600+
then
1601+
log "👀 if you want more details, open /tmp/ccloud-costs-history-detailed.txt file"
1602+
fi
16001603
fi
16011604
fi
16021605

0 commit comments

Comments
 (0)