From d505ae9b318e0058eee82f84610d27e63bb9a679 Mon Sep 17 00:00:00 2001 From: "Per G. da Silva" Date: Fri, 26 Jun 2026 10:10:23 +0200 Subject: [PATCH] remove asciinema upload from update-demos target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Claude Opus 4.6 (1M context) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9c0f9719e9..5fb531c7cc 100644 --- a/Makefile +++ b/Makefile @@ -627,11 +627,11 @@ deploy-docs: venv # The demo script requires to install asciinema with: brew install asciinema to run on mac os envs. # Please ensure that all demos are named with the demo name and the suffix -demo-script.sh -.PHONY: update-demos #EXHELP Update and upload the demos. +.PHONY: update-demos #EXHELP Validate demo recordings. update-demos: @for script in hack/demo/*-demo-script.sh; do \ nm=$$(basename $$script -script.sh); \ - ./hack/demo/generate-asciidemo.sh -u -n $$nm $$(basename $$script); \ + ./hack/demo/generate-asciidemo.sh -n $$nm $$(basename $$script); \ done include Makefile.venv