From 0041db3ce2081580e899f8a653f976cffd69c893 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Tue, 6 Apr 2021 19:55:46 +0200 Subject: [PATCH] Actions: Move ci_expat_config_h/ files into .github/workflows/ --- .../workflows/data}/expat_config_h_cmake__expected.txt | 0 .../workflows/data}/expat_config_h_in__expected.txt | 0 .github/workflows/expat_config_h.yml | 8 ++++---- .../workflows/scripts}/list_exported_macros.sh | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename {ci_expat_config_h => .github/workflows/data}/expat_config_h_cmake__expected.txt (100%) rename {ci_expat_config_h => .github/workflows/data}/expat_config_h_in__expected.txt (100%) rename {ci_expat_config_h => .github/workflows/scripts}/list_exported_macros.sh (100%) diff --git a/ci_expat_config_h/expat_config_h_cmake__expected.txt b/.github/workflows/data/expat_config_h_cmake__expected.txt similarity index 100% rename from ci_expat_config_h/expat_config_h_cmake__expected.txt rename to .github/workflows/data/expat_config_h_cmake__expected.txt diff --git a/ci_expat_config_h/expat_config_h_in__expected.txt b/.github/workflows/data/expat_config_h_in__expected.txt similarity index 100% rename from ci_expat_config_h/expat_config_h_in__expected.txt rename to .github/workflows/data/expat_config_h_in__expected.txt diff --git a/.github/workflows/expat_config_h.yml b/.github/workflows/expat_config_h.yml index 9b3cd206..7b94a95c 100644 --- a/.github/workflows/expat_config_h.yml +++ b/.github/workflows/expat_config_h.yml @@ -22,11 +22,11 @@ jobs: # - Removals would be trouble (because expat_config.h is installed). # - Additions could use an extra check by a human ( cd expat && ./buildconf.sh ) # generate expat_config.h.in - diff -u <(sort < ci_expat_config_h/expat_config_h_in__expected.txt) <(./ci_expat_config_h/list_exported_macros.sh expat/expat_config.h.in) - diff -u <(sort < ci_expat_config_h/expat_config_h_cmake__expected.txt) <(./ci_expat_config_h/list_exported_macros.sh expat/expat_config.h.cmake) + diff -u <(sort < .github/workflows/data/expat_config_h_in__expected.txt) <(.github/workflows/scripts/list_exported_macros.sh expat/expat_config.h.in) + diff -u <(sort < .github/workflows/data/expat_config_h_cmake__expected.txt) <(.github/workflows/scripts/list_exported_macros.sh expat/expat_config.h.cmake) # Informational (and not an ideal state) diff -u \ - <(sort < ci_expat_config_h/expat_config_h_in__expected.txt) \ - <(sort < ci_expat_config_h/expat_config_h_cmake__expected.txt) \ + <(sort < .github/workflows/data/expat_config_h_in__expected.txt) \ + <(sort < .github/workflows/data/expat_config_h_cmake__expected.txt) \ || true diff --git a/ci_expat_config_h/list_exported_macros.sh b/.github/workflows/scripts/list_exported_macros.sh similarity index 100% rename from ci_expat_config_h/list_exported_macros.sh rename to .github/workflows/scripts/list_exported_macros.sh