Browse Source

Disable CI build skip

Signed-off-by: Emily Mabrey <emabrey@tenacityaudio.org>
pull/633/head
Emily Mabrey 2 years ago
parent
commit
2903c8f29c
No known key found for this signature in database GPG Key ID: 6F4EF47256A1B7DC
  1. 38
      .github/workflows/cmake_build.yml

38
.github/workflows/cmake_build.yml

@ -27,27 +27,27 @@ permissions:
jobs:
skip_test:
name: "CI Build Skipping Logic"
runs-on: ubuntu-latest
permissions:
actions: write
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@f75dd6564bb646f95277dc8c3b80612e46a4a1ea
with:
paths: '[]'
paths_ignore: '["**/**.md", "**/**.dox2", "**/**.dox", "**/**.dox.in", "**/LICENSE.txt", "/.builds/**", "/.github/ISSUE_TEMPLATE/**", "/.github/funding.yml", "/.vscode/**"]'
do_not_skip: '["workflow_dispatch", "schedule"]'
cancel_others: 'true'
skip_after_successful_duplicate: 'true'
concurrent_skipping: 'same_content_newer'
# skip_test:
# name: "CI Build Skipping Logic"
# runs-on: ubuntu-latest
# permissions:
# actions: write
# outputs:
# should_skip: ${{ steps.skip_check.outputs.should_skip }}
# steps:
# - id: skip_check
# uses: fkirc/skip-duplicate-actions@f75dd6564bb646f95277dc8c3b80612e46a4a1ea
# with:
# paths: '[]'
# paths_ignore: '["**/**.md", "**/**.dox2", "**/**.dox", "**/**.dox.in", "**/LICENSE.txt", "/.builds/**", "/.github/ISSUE_TEMPLATE/**", "/.github/funding.yml", "/.vscode/**"]'
# do_not_skip: '["workflow_dispatch", "schedule"]'
# cancel_others: 'true'
# skip_after_successful_duplicate: 'true'
# concurrent_skipping: 'same_content_newer'
build:
needs: skip_test
if: ${{ needs.skip_test.outputs.should_skip != 'true' }}
# needs: skip_test
# if: ${{ needs.skip_test.outputs.should_skip != 'true' }}
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
permissions:

Loading…
Cancel
Save