From 58015a9e715a096c7cf2fe8d67f7c1f9a3c79f06 Mon Sep 17 00:00:00 2001 From: Oz Date: Sat, 28 Oct 2023 13:56:26 +0200 Subject: [PATCH] [Test] Remove comments from workflow and action files --- .github/actions/test_action/action.yml | 4 ---- .github/workflows/test_macos.yml | 1 - .github/workflows/test_ubuntu.yml | 1 - .github/workflows/test_windows.yml | 1 - 4 files changed, 7 deletions(-) diff --git a/.github/actions/test_action/action.yml b/.github/actions/test_action/action.yml index aced94d5..7f1ddf2e 100644 --- a/.github/actions/test_action/action.yml +++ b/.github/actions/test_action/action.yml @@ -25,7 +25,6 @@ runs: using: "composite" steps: - name: Set reusable strings - # Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file. id: strings shell: bash run: | @@ -68,7 +67,6 @@ runs: - name: Build bit7z shell: ${{ inputs.shell }} - # Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator). run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ inputs.build_type }} --parallel - name: Test bit7z @@ -77,6 +75,4 @@ runs: # Disabling alloc_dealloc_mismatch for address sanitizer until https://github.com/llvm/llvm-project/issues/52771 is fixed env: ASAN_OPTIONS: alloc_dealloc_mismatch=0 - # Execute tests defined by the CMake configuration. Note that --build-config is needed because the default Windows generator is a multi-config generator (Visual Studio generator). - # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: ctest --build-target bit7z-tests --build-config ${{ inputs.build_type }} --output-on-failure diff --git a/.github/workflows/test_macos.yml b/.github/workflows/test_macos.yml index adf76f22..ebe1a774 100644 --- a/.github/workflows/test_macos.yml +++ b/.github/workflows/test_macos.yml @@ -10,7 +10,6 @@ jobs: || startsWith(github.ref, 'refs/tags/v') strategy: - # Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. fail-fast: false matrix: diff --git a/.github/workflows/test_ubuntu.yml b/.github/workflows/test_ubuntu.yml index 1d83af92..1cffa2a5 100644 --- a/.github/workflows/test_ubuntu.yml +++ b/.github/workflows/test_ubuntu.yml @@ -10,7 +10,6 @@ jobs: || startsWith(github.ref, 'refs/tags/v') strategy: - # Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. fail-fast: false matrix: diff --git a/.github/workflows/test_windows.yml b/.github/workflows/test_windows.yml index 4162f28c..0cef27e5 100644 --- a/.github/workflows/test_windows.yml +++ b/.github/workflows/test_windows.yml @@ -10,7 +10,6 @@ jobs: || startsWith(github.ref, 'refs/tags/v') strategy: - # Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. fail-fast: false matrix: