2024-09-22 22:30:05 +00:00
|
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
# See Notices.txt for copyright information
|
2024-06-12 05:13:07 +00:00
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: debian-12
|
|
|
|
steps:
|
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-09-22 22:30:53 +00:00
|
|
|
- run: |
|
|
|
|
scripts/check-copyright.sh
|
2024-10-03 07:27:28 +00:00
|
|
|
- run: |
|
|
|
|
apt-get update -qq
|
|
|
|
apt-get install -qq cvc5 z3
|
2024-06-12 05:13:07 +00:00
|
|
|
- run: |
|
2024-08-07 10:16:29 +00:00
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.80.1
|
2024-06-12 05:15:23 +00:00
|
|
|
source "$HOME/.cargo/env"
|
|
|
|
echo "$PATH" >> "$GITHUB_PATH"
|
2024-10-03 07:27:28 +00:00
|
|
|
- run: |
|
|
|
|
git clone --depth=1 --branch=yosys-0.45 https://github.com/YosysHQ/sby.git
|
|
|
|
make -C sby install
|
|
|
|
- run: |
|
|
|
|
git clone --depth=1 --branch=0.45 https://github.com/YosysHQ/yosys.git
|
|
|
|
cd yosys
|
|
|
|
autoconf -f
|
|
|
|
./configure
|
|
|
|
make install -j6
|
|
|
|
- run: |
|
|
|
|
wget -O firrtl.tar.gz https://github.com/llvm/circt/releases/download/firtool-1.86.0/firrtl-bin-linux-x64.tar.gz
|
|
|
|
sha256sum -c - <<<'bf6f4ab18ae76f135c944efbd81e25391c31c1bd0617c58ab0592640abefee14 firrtl.tar.gz'
|
|
|
|
tar -xvaf firrtl.tar.gz
|
|
|
|
export PATH="$(realpath firtool-1.86.0/bin):$PATH"
|
|
|
|
echo "$PATH" >> "$GITHUB_PATH"
|
2024-06-12 05:20:22 +00:00
|
|
|
- uses: https://github.com/Swatinem/rust-cache@v2
|
2024-06-12 05:13:07 +00:00
|
|
|
with:
|
|
|
|
save-if: ${{ github.ref == 'refs/heads/master' }}
|
2024-06-13 20:27:57 +00:00
|
|
|
- run: cargo test
|
2024-07-20 00:14:09 +00:00
|
|
|
- run: cargo test --features=unstable-doc
|
2024-07-18 07:13:28 +00:00
|
|
|
- run: cargo doc --features=unstable-doc
|