mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-02 00:49:33 +02:00
Disable CI build skip
Signed-off-by: Emily Mabrey <emabrey@tenacityaudio.org>
This commit is contained in:
parent
4b3778ec7c
commit
2903c8f29c
38
.github/workflows/cmake_build.yml
vendored
38
.github/workflows/cmake_build.yml
vendored
@ -27,27 +27,27 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
skip_test:
|
# skip_test:
|
||||||
name: "CI Build Skipping Logic"
|
# name: "CI Build Skipping Logic"
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
permissions:
|
# permissions:
|
||||||
actions: write
|
# actions: write
|
||||||
outputs:
|
# outputs:
|
||||||
should_skip: ${{ steps.skip_check.outputs.should_skip }}
|
# should_skip: ${{ steps.skip_check.outputs.should_skip }}
|
||||||
steps:
|
# steps:
|
||||||
- id: skip_check
|
# - id: skip_check
|
||||||
uses: fkirc/skip-duplicate-actions@f75dd6564bb646f95277dc8c3b80612e46a4a1ea
|
# uses: fkirc/skip-duplicate-actions@f75dd6564bb646f95277dc8c3b80612e46a4a1ea
|
||||||
with:
|
# with:
|
||||||
paths: '[]'
|
# paths: '[]'
|
||||||
paths_ignore: '["**/**.md", "**/**.dox2", "**/**.dox", "**/**.dox.in", "**/LICENSE.txt", "/.builds/**", "/.github/ISSUE_TEMPLATE/**", "/.github/funding.yml", "/.vscode/**"]'
|
# paths_ignore: '["**/**.md", "**/**.dox2", "**/**.dox", "**/**.dox.in", "**/LICENSE.txt", "/.builds/**", "/.github/ISSUE_TEMPLATE/**", "/.github/funding.yml", "/.vscode/**"]'
|
||||||
do_not_skip: '["workflow_dispatch", "schedule"]'
|
# do_not_skip: '["workflow_dispatch", "schedule"]'
|
||||||
cancel_others: 'true'
|
# cancel_others: 'true'
|
||||||
skip_after_successful_duplicate: 'true'
|
# skip_after_successful_duplicate: 'true'
|
||||||
concurrent_skipping: 'same_content_newer'
|
# concurrent_skipping: 'same_content_newer'
|
||||||
|
|
||||||
build:
|
build:
|
||||||
needs: skip_test
|
# needs: skip_test
|
||||||
if: ${{ needs.skip_test.outputs.should_skip != 'true' }}
|
# if: ${{ needs.skip_test.outputs.should_skip != 'true' }}
|
||||||
name: ${{ matrix.config.name }}
|
name: ${{ matrix.config.name }}
|
||||||
runs-on: ${{ matrix.config.os }}
|
runs-on: ${{ matrix.config.os }}
|
||||||
permissions:
|
permissions:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user