diff options
author | Naoto Ono <[email protected]> | 2025-02-19 08:48:33 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2025-02-19 08:48:33 +0900 |
commit | 6e510d78c02d78d335f09f5175c73c4794fe0378 (patch) | |
tree | ae3f0f1740a22ef5589eab29d4a0cdf1216174dc | |
parent | 80a71bfb1cd58b4129e2b008fd0fccc7fc90a11e (diff) |
Launchable: Remove unused file names (#12782)
I found file names that were not used anymore. I'm gonna delete them in this PR.
Notes
Notes:
Merged-By: ono-max <[email protected]>
-rw-r--r-- | .github/actions/launchable/setup/action.yml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/.github/actions/launchable/setup/action.yml b/.github/actions/launchable/setup/action.yml index e1eacc3a57..a704f27c12 100644 --- a/.github/actions/launchable/setup/action.yml +++ b/.github/actions/launchable/setup/action.yml @@ -220,9 +220,6 @@ runs: test_all_report_file: ${{ steps.global.outputs.test_all_report_file }} btest_report_file: ${{ steps.global.outputs.btest_report_file }} test_spec_report_dir: ${{ steps.global.outputs.test_spec_report_dir }} - test_all_subset_input_file: ${{ steps.global.outputs.test_all_subset_input_file }} - btest_subset_input_file: ${{ steps.global.outputs.btest_subset_input_file }} - test_spec_subset_input_file: ${{ steps.global.outputs.test_spec_subset_input_file }} - name: Variables to report Launchable id: variables @@ -288,9 +285,6 @@ runs: rm -f "${test_report_path}" rm -f "${btest_report_path}" rm -fr "${test_spec_report_path}" - rm -f "${test_all_subset_input_file}" - rm -f "${btest_subset_input_file}" - rm -f "${test_spec_subset_input_file}" if: ${{ always() && steps.enable-launchable.outputs.enable-launchable }} env: test_report_path: ${{ steps.variables.outputs.test_report_path }} @@ -302,6 +296,3 @@ runs: test_all_session_file: ${{ steps.global.outputs.test_all_session_file }} btest_session_file: ${{ steps.global.outputs.btest_session_file }} test_spec_session_file: ${{ steps.global.outputs.test_spec_session_file }} - test_all_subset_input_file: ${{ steps.global.outputs.test_all_subset_input_file }} - btest_subset_input_file: ${{ steps.global.outputs.btest_subset_input_file }} - test_spec_subset_input_file: ${{ steps.global.outputs.test_spec_subset_input_file }} |