From 9e6cb9fea48c98a3ae45dfeaedf3fed4d2a7d035 Mon Sep 17 00:00:00 2001 From: hanez Date: Tue, 31 Mar 2026 01:57:16 +0200 Subject: [PATCH] CI action update. Some example directory refactoring. No code changes. (0.39.15) --- .github/workflows/cmake-ubuntu-latest.yml | 4 ++-- examples/{extra => remote}/curl_download.fun | 0 examples/{extra => remote}/curl_get_json.fun | 0 examples/{extra => remote}/curl_post.fun | 0 examples/{extra => ui}/notcurses_hello.fun | 0 examples/{extra => ui}/notcurses_menu.fun | 0 examples/{extra => ui}/notcurses_progress.fun | 0 examples/{blocking => ui}/tk_file_manager.fun | 0 examples/{blocking => ui}/tk_hello.fun | 0 examples/{blocking => ui}/tk_testing.fun | 0 10 files changed, 2 insertions(+), 2 deletions(-) rename examples/{extra => remote}/curl_download.fun (100%) rename examples/{extra => remote}/curl_get_json.fun (100%) rename examples/{extra => remote}/curl_post.fun (100%) rename examples/{extra => ui}/notcurses_hello.fun (100%) rename examples/{extra => ui}/notcurses_menu.fun (100%) rename examples/{extra => ui}/notcurses_progress.fun (100%) rename examples/{blocking => ui}/tk_file_manager.fun (100%) rename examples/{blocking => ui}/tk_hello.fun (100%) rename examples/{blocking => ui}/tk_testing.fun (100%) diff --git a/.github/workflows/cmake-ubuntu-latest.yml b/.github/workflows/cmake-ubuntu-latest.yml index d2c6c45..e95c93b 100644 --- a/.github/workflows/cmake-ubuntu-latest.yml +++ b/.github/workflows/cmake-ubuntu-latest.yml @@ -54,8 +54,8 @@ jobs: - name: Run Examples (crypto) run: ./scripts/run_examples.sh crypto - #- name: Run Examples (extra) - # run: ./scripts/run_examples.sh extra + - name: Run Examples (extra) + run: ./scripts/run_examples.sh extra - name: Run Examples (io) run: ./scripts/run_examples.sh io diff --git a/examples/extra/curl_download.fun b/examples/remote/curl_download.fun similarity index 100% rename from examples/extra/curl_download.fun rename to examples/remote/curl_download.fun diff --git a/examples/extra/curl_get_json.fun b/examples/remote/curl_get_json.fun similarity index 100% rename from examples/extra/curl_get_json.fun rename to examples/remote/curl_get_json.fun diff --git a/examples/extra/curl_post.fun b/examples/remote/curl_post.fun similarity index 100% rename from examples/extra/curl_post.fun rename to examples/remote/curl_post.fun diff --git a/examples/extra/notcurses_hello.fun b/examples/ui/notcurses_hello.fun similarity index 100% rename from examples/extra/notcurses_hello.fun rename to examples/ui/notcurses_hello.fun diff --git a/examples/extra/notcurses_menu.fun b/examples/ui/notcurses_menu.fun similarity index 100% rename from examples/extra/notcurses_menu.fun rename to examples/ui/notcurses_menu.fun diff --git a/examples/extra/notcurses_progress.fun b/examples/ui/notcurses_progress.fun similarity index 100% rename from examples/extra/notcurses_progress.fun rename to examples/ui/notcurses_progress.fun diff --git a/examples/blocking/tk_file_manager.fun b/examples/ui/tk_file_manager.fun similarity index 100% rename from examples/blocking/tk_file_manager.fun rename to examples/ui/tk_file_manager.fun diff --git a/examples/blocking/tk_hello.fun b/examples/ui/tk_hello.fun similarity index 100% rename from examples/blocking/tk_hello.fun rename to examples/ui/tk_hello.fun diff --git a/examples/blocking/tk_testing.fun b/examples/ui/tk_testing.fun similarity index 100% rename from examples/blocking/tk_testing.fun rename to examples/ui/tk_testing.fun