Skip to content

Commit 00db91d

Browse files
perdasilvaPer G. da Silvaclaude
authored
remove asciinema upload from update-demos target (#2786)
asciinema.org is unreachable from GitHub Actions runners (Azure) since June 16, 2026 (asciinema/asciinema-server#479), causing the daily demo CI job to fail consistently. The upload step is not essential — the CI job's purpose is to validate that demo recordings can be generated successfully. Remove the -u flag and update the target's EXHELP text accordingly. Co-authored-by: Per G. da Silva <pegoncal@redhat.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f5e0d77 commit 00db91d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,11 +627,11 @@ deploy-docs: venv
627627

628628
# The demo script requires to install asciinema with: brew install asciinema to run on mac os envs.
629629
# Please ensure that all demos are named with the demo name and the suffix -demo-script.sh
630-
.PHONY: update-demos #EXHELP Update and upload the demos.
630+
.PHONY: update-demos #EXHELP Validate demo recordings.
631631
update-demos:
632632
@for script in hack/demo/*-demo-script.sh; do \
633633
nm=$$(basename $$script -script.sh); \
634-
./hack/demo/generate-asciidemo.sh -u -n $$nm $$(basename $$script); \
634+
./hack/demo/generate-asciidemo.sh -n $$nm $$(basename $$script); \
635635
done
636636

637637
include Makefile.venv

0 commit comments

Comments
 (0)