ci: Verific skipping conditional on github.ref #850
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and run tests with Verific (Linux) | ||
on: [push, pull_request] | ||
# docs builds are needed for anything on main, any tagged versions, and any tag | ||
# or branch starting with docs-preview | ||
env: | ||
is_docs_job: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/docs-preview') || startsWith(github.ref, 'refs/tags/') }} | ||
jobs: | ||
pre-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"]' | ||
# don't cancel previous builds | ||
cancel_others: 'false' | ||
# only run on push *or* pull_request, not both | ||
# unless this is a build which needs to run for docs generation | ||
concurrent_skipping: ${{ env.is_docs_job && 'never' || 'same_content_newer' }} | ||
# we can skip testing if it has already passed | ||
skip_after_successful_duplicate: 'true' | ||
test-verific: | ||
needs: pre-job | ||
if: needs.pre-job.outputs.should_skip != 'true' | ||
runs-on: [self-hosted, linux, x64, fast] | ||
steps: | ||
- name: Checkout Yosys | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
submodules: true | ||
- name: Runtime environment | ||
run: | | ||
echo "procs=$(nproc)" >> $GITHUB_ENV | ||
- name: Build Yosys | ||
run: | | ||
make config-clang | ||
echo "ENABLE_VERIFIC := 1" >> Makefile.conf | ||
echo "ENABLE_VERIFIC_EDIF := 1" >> Makefile.conf | ||
echo "ENABLE_VERIFIC_LIBERTY := 1" >> Makefile.conf | ||
echo "ENABLE_VERIFIC_YOSYSHQ_EXTENSIONS := 1" >> Makefile.conf | ||
echo "ENABLE_CCACHE := 1" >> Makefile.conf | ||
make -j${{ env.procs }} ENABLE_LTO=1 | ||
- name: Install Yosys | ||
run: | | ||
make install DESTDIR=${GITHUB_WORKSPACE}/.local PREFIX= | ||
- name: Checkout SBY | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'YosysHQ/sby' | ||
path: 'sby' | ||
- name: Build SBY | ||
run: | | ||
make -C sby install DESTDIR=${GITHUB_WORKSPACE}/.local PREFIX= | ||
- name: Run Yosys tests | ||
run: | | ||
make -j${{ env.procs }} test | ||
- name: Run Verific specific Yosys tests | ||
run: | | ||
make -C tests/sva | ||
cd tests/svtypes && bash run-test.sh | ||
- name: Run SBY tests | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
run: | | ||
make -C sby run_ci | ||
prepare-docs: | ||
name: Generate docs artifact | ||
needs: [pre-job, test-verific] | ||
if: needs.pre-job.outputs.should_skip != 'true' || env.is_docs_job | ||
Check failure on line 82 in .github/workflows/test-verific.yml GitHub Actions / Build and run tests with Verific (Linux)Invalid workflow file
|
||
runs-on: [self-hosted, linux, x64, fast] | ||
steps: | ||
- name: Checkout Yosys | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
submodules: true | ||
- name: Runtime environment | ||
run: | | ||
echo "procs=$(nproc)" >> $GITHUB_ENV | ||
- name: Build Yosys | ||
run: | | ||
make config-clang | ||
echo "ENABLE_VERIFIC := 1" >> Makefile.conf | ||
echo "ENABLE_VERIFIC_EDIF := 1" >> Makefile.conf | ||
echo "ENABLE_VERIFIC_LIBERTY := 1" >> Makefile.conf | ||
echo "ENABLE_VERIFIC_YOSYSHQ_EXTENSIONS := 1" >> Makefile.conf | ||
echo "ENABLE_CCACHE := 1" >> Makefile.conf | ||
make -j${{ env.procs }} ENABLE_LTO=1 | ||
- name: Prepare docs | ||
shell: bash | ||
run: | ||
make docs/source/cmd/abc.rst docs/gen_examples docs/gen_images docs/guidelines docs/usage docs/reqs TARGETS= EXTRA_TARGETS= | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: cmd-ref-${{ github.sha }} | ||
path: | | ||
docs/source/cmd | ||
docs/source/generated | ||
docs/source/_images | ||
docs/source/code_examples | ||
- name: Trigger RTDs build | ||
if: ${{ env.is_docs_job }} | ||
uses: dfm/[email protected] | ||
with: | ||
webhook_url: ${{ secrets.RTDS_WEBHOOK_URL }} | ||
webhook_token: ${{ secrets.RTDS_WEBHOOK_TOKEN }} | ||
commit_ref: ${{ github.ref }} |