mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 00:55:32 +00:00
New matrix variable for sanitizer, running `undefined` and `address` separately (because they are mutually exclusive). Probably don't need to run both sanitizers on both os targets, but it's probably fine.
239 lines
6.2 KiB
YAML
239 lines
6.2 KiB
YAML
name: Build and run tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
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", "docs/**", "guidelines/**"]'
|
|
# 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'
|
|
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:
|
|
name: Reusable build
|
|
runs-on: ${{ matrix.os }}
|
|
needs: pre_docs_job
|
|
if: needs.pre_docs_job.outputs.should_skip != 'true'
|
|
env:
|
|
CC: clang
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
sanitizer: [undefined, address]
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout Yosys
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Setup environment
|
|
uses: ./.github/actions/setup-build-env
|
|
|
|
- name: Build
|
|
shell: bash
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
make -f ../Makefile config-$CC
|
|
echo 'SANITIZER = ${{ matrix.sanitizer }}' >> Makefile.conf
|
|
make -f ../Makefile -j$procs ENABLE_LTO=1
|
|
|
|
- name: Log yosys-config output
|
|
run: |
|
|
./yosys-config || true
|
|
|
|
- name: Compress build
|
|
shell: bash
|
|
run: |
|
|
cd build
|
|
tar -cvf ../build.tar share/ yosys yosys-*
|
|
|
|
- name: Store build artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: build-${{ matrix.os }}-${{ matrix.sanitizer }}
|
|
path: build.tar
|
|
retention-days: 1
|
|
|
|
test-yosys:
|
|
name: Run tests
|
|
runs-on: ${{ matrix.os }}
|
|
needs: [build-yosys, pre_job]
|
|
if: needs.pre_job.outputs.should_skip != 'true'
|
|
env:
|
|
CC: clang
|
|
ASAN_OPTIONS: halt_on_error=1
|
|
UBSAN_OPTIONS: halt_on_error=1
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
sanitizer: [undefined, address]
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout Yosys
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup environment
|
|
uses: ./.github/actions/setup-build-env
|
|
|
|
- name: Get iverilog
|
|
shell: bash
|
|
run: |
|
|
git clone https://github.com/steveicarus/iverilog.git
|
|
cd iverilog
|
|
echo "IVERILOG_GIT=$(git rev-parse HEAD)" >> $GITHUB_ENV
|
|
|
|
- name: Get vcd2fst
|
|
shell: bash
|
|
run: |
|
|
git clone https://github.com/mmicko/libwave.git
|
|
mkdir -p ${{ github.workspace }}/.local/
|
|
cd libwave
|
|
cmake . -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/.local
|
|
make -j$procs
|
|
make install
|
|
|
|
- name: Cache iverilog
|
|
id: cache-iverilog
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: .local/
|
|
key: ${{ matrix.os }}-${{ env.IVERILOG_GIT }}
|
|
|
|
- name: Build iverilog
|
|
if: steps.cache-iverilog.outputs.cache-hit != 'true'
|
|
shell: bash
|
|
run: |
|
|
mkdir -p ${{ github.workspace }}/.local/
|
|
cd iverilog
|
|
autoconf
|
|
CC=gcc CXX=g++ ./configure --prefix=${{ github.workspace }}/.local
|
|
make -j$procs
|
|
make install
|
|
|
|
- name: Download build artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: build-${{ matrix.os }}-${{ matrix.sanitizer }}
|
|
|
|
- name: Uncompress build
|
|
shell: bash
|
|
run:
|
|
tar -xvf build.tar
|
|
|
|
- name: Log yosys-config output
|
|
run: |
|
|
./yosys-config || true
|
|
|
|
- name: Run tests
|
|
shell: bash
|
|
run: |
|
|
make -j$procs test TARGETS= EXTRA_TARGETS= CONFIG=$CC
|
|
|
|
- name: Report errors
|
|
if: ${{ failure() }}
|
|
shell: bash
|
|
run: |
|
|
find tests/**/*.err -print -exec cat {} \;
|
|
|
|
test-docs:
|
|
name: Run docs tests
|
|
runs-on: ${{ matrix.os }}
|
|
needs: [build-yosys, pre_docs_job]
|
|
if: needs.pre_docs_job.outputs.should_skip != 'true'
|
|
env:
|
|
CC: clang
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
sanitizer: [undefined, address]
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout Yosys
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup environment
|
|
uses: ./.github/actions/setup-build-env
|
|
|
|
- name: Download build artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: build-${{ matrix.os }}-${{ matrix.sanitizer }}
|
|
|
|
- name: Uncompress build
|
|
shell: bash
|
|
run:
|
|
tar -xvf build.tar
|
|
|
|
- name: Log yosys-config output
|
|
run: |
|
|
./yosys-config || true
|
|
|
|
- name: Run tests
|
|
shell: bash
|
|
run: |
|
|
make -C docs test -j${{ env.procs }}
|
|
|
|
test-docs-build:
|
|
name: Try build docs
|
|
runs-on: [self-hosted, linux, x64, fast]
|
|
needs: [pre_docs_job]
|
|
if: needs.pre_docs_job.outputs.should_skip != 'true'
|
|
strategy:
|
|
matrix:
|
|
docs-target: [html, latexpdf]
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout Yosys
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Runtime environment
|
|
run: |
|
|
echo "procs=$(nproc)" >> $GITHUB_ENV
|
|
|
|
- name: Build Yosys
|
|
run: |
|
|
make config-clang
|
|
echo "ENABLE_CCACHE := 1" >> Makefile.conf
|
|
make -j${{ env.procs }}
|
|
|
|
- name: Install doc prereqs
|
|
shell: bash
|
|
run: |
|
|
make docs/reqs
|
|
|
|
- name: Build docs
|
|
shell: bash
|
|
run: |
|
|
make docs DOC_TARGET=${{ matrix.docs-target }} -j${{ env.procs }}
|
|
|
|
- name: Store docs build artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: docs-build-${{ matrix.docs-target }}
|
|
path: docs/build/
|
|
retention-days: 7
|