Skip to content

Commit

Permalink
[Test] Remove comments from workflow and action files
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Oct 28, 2023
1 parent 3e4bf2a commit 58015a9
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/actions/test_action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand All @@ -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
1 change: 0 additions & 1 deletion .github/workflows/test_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 58015a9

Please sign in to comment.