2024-02-05 23:31:53 -06:00
|
|
|
name: Build and run tests
|
2021-10-27 18:18:16 -05:00
|
|
|
|
2024-02-05 02:48:25 -06:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-10-27 18:18:16 -05:00
|
|
|
|
|
|
|
jobs:
|
2024-05-08 16:26:18 -05:00
|
|
|
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'
|
|
|
|
|
2024-02-09 17:34:07 -06:00
|
|
|
test-compile:
|
2024-02-08 10:43:10 -06:00
|
|
|
name: Compiler testing
|
2024-02-05 23:56:11 -06:00
|
|
|
runs-on: ${{ matrix.os }}
|
2024-05-08 16:26:18 -05:00
|
|
|
needs: pre_job
|
|
|
|
if: needs.pre_job.outputs.should_skip != 'true'
|
2024-02-05 17:18:52 -06:00
|
|
|
env:
|
|
|
|
CC: ${{ matrix.compiler }}
|
2024-02-05 22:25:25 -06:00
|
|
|
CXX: ${{ matrix.compiler }}
|
2024-02-05 17:18:52 -06:00
|
|
|
CXXSTD: ${{ matrix.cpp_std }}
|
2021-10-27 18:18:16 -05:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
2024-02-05 23:31:53 -06:00
|
|
|
- ubuntu-20.04
|
2021-10-27 18:18:16 -05:00
|
|
|
compiler:
|
|
|
|
- 'clang-12'
|
|
|
|
- 'gcc-11'
|
|
|
|
cpp_std:
|
|
|
|
- 'c++11'
|
|
|
|
- 'c++14'
|
|
|
|
- 'c++17'
|
|
|
|
- 'c++20'
|
|
|
|
include:
|
2024-02-05 23:56:11 -06:00
|
|
|
# Add os_name
|
|
|
|
- os: ubuntu-20.04
|
|
|
|
os_name: focal
|
2024-02-14 14:49:02 -06:00
|
|
|
# macOS builds
|
2024-02-05 23:56:11 -06:00
|
|
|
- os: macos-13
|
2024-02-05 23:31:53 -06:00
|
|
|
compiler: 'clang'
|
|
|
|
cpp_std: 'c++11'
|
2024-02-14 14:49:02 -06:00
|
|
|
- os: macos-13
|
|
|
|
compiler: 'clang'
|
|
|
|
cpp_std: 'c++17'
|
2024-02-05 23:31:53 -06:00
|
|
|
# Limited testing for older compilers
|
|
|
|
- os: ubuntu-20.04
|
2024-02-05 23:56:11 -06:00
|
|
|
os_name: focal
|
2022-03-01 03:20:59 -06:00
|
|
|
compiler: 'clang-11'
|
|
|
|
cpp_std: 'c++11'
|
2024-02-05 23:31:53 -06:00
|
|
|
- os: ubuntu-20.04
|
2024-02-05 23:56:11 -06:00
|
|
|
os_name: focal
|
2022-03-01 03:20:59 -06:00
|
|
|
compiler: 'gcc-10'
|
|
|
|
cpp_std: 'c++11'
|
2021-10-27 18:18:16 -05:00
|
|
|
fail-fast: false
|
|
|
|
steps:
|
2024-02-05 23:31:53 -06:00
|
|
|
- name: Install Linux Dependencies
|
|
|
|
if: runner.os == 'Linux'
|
2021-10-27 18:18:16 -05:00
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev
|
|
|
|
|
2024-02-05 23:31:53 -06:00
|
|
|
- name: Install macOS Dependencies
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
run: |
|
|
|
|
brew install bison flex gawk libffi pkg-config bash
|
|
|
|
|
2021-10-27 18:18:16 -05:00
|
|
|
- name: Setup GCC
|
|
|
|
if: startsWith(matrix.compiler, 'gcc')
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
CXX=${CC/#gcc/g++}
|
|
|
|
sudo apt-add-repository ppa:ubuntu-toolchain-r/test
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install $CC $CXX
|
|
|
|
echo "CXX=$CXX" >> $GITHUB_ENV
|
2023-09-09 15:32:51 -05:00
|
|
|
echo "CXXFLAGS=-Wp,-D_GLIBCXX_ASSERTIONS" >> $GITHUB_ENV
|
2021-10-27 18:18:16 -05:00
|
|
|
|
|
|
|
- name: Setup Clang
|
2024-02-05 22:25:25 -06:00
|
|
|
if: startsWith(matrix.compiler, 'clang') && (matrix.compiler != 'clang')
|
2021-10-27 18:18:16 -05:00
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
wget https://apt.llvm.org/llvm-snapshot.gpg.key
|
|
|
|
sudo apt-key add llvm-snapshot.gpg.key
|
|
|
|
rm llvm-snapshot.gpg.key
|
2024-02-05 23:31:53 -06:00
|
|
|
sudo apt-add-repository "deb https://apt.llvm.org/${{ matrix.os_name }}/ llvm-toolchain-${{ matrix.os_name }} main"
|
2021-10-27 18:18:16 -05:00
|
|
|
sudo apt-get update
|
|
|
|
CXX=${CC/#clang/clang++}
|
|
|
|
sudo apt-get install $CC $CXX
|
|
|
|
echo "CXX=$CXX" >> $GITHUB_ENV
|
|
|
|
|
2024-02-05 23:31:53 -06:00
|
|
|
- name: Linux runtime environment
|
|
|
|
if: runner.os == 'Linux'
|
2021-10-27 18:18:16 -05:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2024-02-05 17:18:52 -06:00
|
|
|
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH
|
2021-10-27 18:18:16 -05:00
|
|
|
echo "procs=$(nproc)" >> $GITHUB_ENV
|
|
|
|
|
2024-02-05 23:31:53 -06:00
|
|
|
- name: macOS runtime environment
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH
|
|
|
|
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
|
|
|
|
echo "$(brew --prefix flex)/bin" >> $GITHUB_PATH
|
|
|
|
echo "procs=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV
|
|
|
|
|
2021-10-27 18:18:16 -05:00
|
|
|
- name: Tool versions
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
$CC --version
|
|
|
|
$CXX --version
|
|
|
|
|
|
|
|
- name: Checkout Yosys
|
2024-01-26 16:20:48 -06:00
|
|
|
uses: actions/checkout@v4
|
2024-04-12 00:08:18 -05:00
|
|
|
with:
|
|
|
|
submodules: true
|
2021-10-27 18:18:16 -05:00
|
|
|
|
2024-02-08 10:43:10 -06:00
|
|
|
- name: Build
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
make config-${CC%%-*}
|
|
|
|
make -j$procs CXXSTD=$CXXSTD CC=$CC CXX=$CXX LD=$CC
|
|
|
|
|
|
|
|
build-yosys:
|
2024-02-09 17:34:07 -06:00
|
|
|
name: Reusable build
|
2024-02-08 10:43:10 -06:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
env:
|
2024-02-09 17:34:07 -06:00
|
|
|
CC: clang
|
2024-02-08 10:43:10 -06:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-02-14 15:00:22 -06:00
|
|
|
os: [ubuntu-20.04, macos-13]
|
2024-02-08 10:43:10 -06:00
|
|
|
fail-fast: false
|
|
|
|
steps:
|
|
|
|
- name: Install Linux Dependencies
|
|
|
|
if: runner.os == 'Linux'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev
|
|
|
|
|
|
|
|
- name: Install macOS Dependencies
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
run: |
|
|
|
|
brew install bison flex gawk libffi pkg-config bash
|
|
|
|
|
|
|
|
- name: Linux runtime environment
|
|
|
|
if: runner.os == 'Linux'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH
|
|
|
|
echo "procs=$(nproc)" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: macOS runtime environment
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH
|
|
|
|
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
|
|
|
|
echo "$(brew --prefix flex)/bin" >> $GITHUB_PATH
|
|
|
|
echo "procs=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Checkout Yosys
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Build
|
2024-02-05 02:48:25 -06:00
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2024-02-09 17:34:07 -06:00
|
|
|
make -f ../Makefile config-$CC
|
|
|
|
make -f ../Makefile -j$procs
|
|
|
|
|
|
|
|
- name: Log yosys-config output
|
|
|
|
run: |
|
|
|
|
./yosys-config || true
|
2024-02-05 02:48:25 -06:00
|
|
|
|
|
|
|
- name: Log yosys-config output
|
|
|
|
run: |
|
|
|
|
./yosys-config || true
|
|
|
|
|
|
|
|
- name: Compress build
|
2021-10-27 18:18:16 -05:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2024-02-05 02:48:25 -06:00
|
|
|
cd build
|
2024-02-05 16:48:38 -06:00
|
|
|
tar -cvf ../build.tar share/ yosys yosys-*
|
2021-10-27 18:18:16 -05:00
|
|
|
|
2024-01-24 15:15:43 -06:00
|
|
|
- name: Store build artifact
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
2024-02-05 23:31:53 -06:00
|
|
|
name: build-${{ matrix.os }}
|
2024-02-05 02:48:25 -06:00
|
|
|
path: build.tar
|
|
|
|
retention-days: 1
|
2024-01-24 15:15:43 -06:00
|
|
|
|
2024-02-05 23:31:53 -06:00
|
|
|
test-yosys:
|
2024-02-05 02:48:25 -06:00
|
|
|
name: Run tests
|
2024-02-05 23:31:53 -06:00
|
|
|
needs: build-yosys
|
2024-02-05 16:48:38 -06:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
env:
|
|
|
|
CC: clang
|
2024-02-05 15:56:20 -06:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-02-14 15:00:22 -06:00
|
|
|
os: [ubuntu-20.04, macos-13]
|
2024-02-05 02:48:25 -06:00
|
|
|
steps:
|
2024-02-14 15:00:22 -06:00
|
|
|
- name: Install Linux Dependencies
|
|
|
|
if: runner.os == 'Linux'
|
2024-02-05 02:48:25 -06:00
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2024-02-14 15:00:22 -06:00
|
|
|
sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev
|
|
|
|
|
|
|
|
- name: Install macOS Dependencies
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
run: |
|
|
|
|
brew install bison flex gawk libffi pkg-config bash
|
2024-02-05 02:48:25 -06:00
|
|
|
|
2024-02-14 15:00:22 -06:00
|
|
|
- name: Linux runtime environment
|
|
|
|
if: runner.os == 'Linux'
|
2021-10-27 18:18:16 -05:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2024-02-05 17:18:52 -06:00
|
|
|
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH
|
2024-02-05 02:48:25 -06:00
|
|
|
echo "procs=$(nproc)" >> $GITHUB_ENV
|
2024-02-04 16:29:46 -06:00
|
|
|
|
2024-02-14 15:00:22 -06:00
|
|
|
- name: macOS runtime environment
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH
|
|
|
|
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
|
|
|
|
echo "$(brew --prefix flex)/bin" >> $GITHUB_PATH
|
|
|
|
echo "procs=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV
|
|
|
|
|
2024-02-05 15:30:37 -06:00
|
|
|
- name: Checkout Yosys
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-02-05 15:56:20 -06:00
|
|
|
- name: Get iverilog
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
git clone https://github.com/steveicarus/iverilog.git
|
|
|
|
cd iverilog
|
|
|
|
git checkout 192b6aec96fde982e6ddcb28b346d5893aa8e874
|
|
|
|
echo "IVERILOG_GIT=$(git rev-parse HEAD)" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Cache iverilog
|
|
|
|
id: cache-iverilog
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: .local/
|
2024-02-05 16:48:38 -06:00
|
|
|
key: ${{ matrix.os }}-${{ env.IVERILOG_GIT }}
|
2024-02-05 15:56:20 -06:00
|
|
|
|
|
|
|
- name: Build iverilog
|
|
|
|
if: steps.cache-iverilog.outputs.cache-hit != 'true'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2024-02-05 17:18:52 -06:00
|
|
|
mkdir -p ${{ github.workspace }}/.local/
|
2024-02-05 15:56:20 -06:00
|
|
|
cd iverilog
|
|
|
|
autoconf
|
2024-02-05 17:18:52 -06:00
|
|
|
CC=gcc CXX=g++ ./configure --prefix=${{ github.workspace }}/.local
|
|
|
|
make -j$procs
|
2024-02-05 15:56:20 -06:00
|
|
|
make install
|
|
|
|
|
2024-02-05 02:48:25 -06:00
|
|
|
- name: Download build artifact
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
2024-02-05 23:31:53 -06:00
|
|
|
name: build-${{ matrix.os }}
|
2024-02-05 02:48:25 -06:00
|
|
|
|
|
|
|
- name: Uncompress build
|
|
|
|
shell: bash
|
|
|
|
run:
|
|
|
|
tar -xvf build.tar
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
shell: bash
|
2024-02-04 16:29:46 -06:00
|
|
|
run: |
|
2024-02-05 16:48:38 -06:00
|
|
|
make -j$procs test TARGETS= EXTRA_TARGETS= CONFIG=$CC
|
2024-02-05 22:56:15 -06:00
|
|
|
|
|
|
|
- name: Report errors
|
|
|
|
if: ${{ failure() }}
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
find tests/**/*.err -print -exec cat {} \;
|