mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Merge pull request #4392 from YosysHQ/krys/refactor-workflows
test-docs should not ignore docs changes
This commit is contained in:
commit
40c7162036
25
.github/workflows/test-build.yml
vendored
25
.github/workflows/test-build.yml
vendored
|
@ -16,12 +16,25 @@ jobs:
|
||||||
cancel_others: 'true'
|
cancel_others: 'true'
|
||||||
# only run on push *or* pull_request, not both
|
# only run on push *or* pull_request, not both
|
||||||
concurrent_skipping: 'same_content_newer'
|
concurrent_skipping: 'same_content_newer'
|
||||||
|
pre_docs_job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
should_skip: ${{ steps.skip_check.outputs.should_skip }}
|
||||||
|
steps:
|
||||||
|
- id: skip_check
|
||||||
|
uses: fkirc/skip-duplicate-actions@v5
|
||||||
|
with:
|
||||||
|
paths_ignore: '["**/README.md"]'
|
||||||
|
# cancel previous builds if a new commit is pushed
|
||||||
|
cancel_others: 'true'
|
||||||
|
# only run on push *or* pull_request, not both
|
||||||
|
concurrent_skipping: 'same_content_newer'
|
||||||
|
|
||||||
build-yosys:
|
build-yosys:
|
||||||
name: Reusable build
|
name: Reusable build
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
needs: pre_job
|
needs: pre_docs_job
|
||||||
if: needs.pre_job.outputs.should_skip != 'true'
|
if: needs.pre_docs_job.outputs.should_skip != 'true'
|
||||||
env:
|
env:
|
||||||
CC: clang
|
CC: clang
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -49,10 +62,6 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
./yosys-config || true
|
./yosys-config || true
|
||||||
|
|
||||||
- name: Log yosys-config output
|
|
||||||
run: |
|
|
||||||
./yosys-config || true
|
|
||||||
|
|
||||||
- name: Compress build
|
- name: Compress build
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
@ -137,8 +146,8 @@ jobs:
|
||||||
test-docs:
|
test-docs:
|
||||||
name: Run docs tests
|
name: Run docs tests
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
needs: [build-yosys, pre_job]
|
needs: [build-yosys, pre_docs_job]
|
||||||
if: needs.pre_job.outputs.should_skip != 'true'
|
if: needs.pre_docs_job.outputs.should_skip != 'true'
|
||||||
env:
|
env:
|
||||||
CC: clang
|
CC: clang
|
||||||
strategy:
|
strategy:
|
||||||
|
|
Loading…
Reference in a new issue