forked from libre-chip/fayalite
try building .bit file
This commit is contained in:
parent
adf485c44a
commit
97878e100a
1 changed files with 17 additions and 1 deletions
|
@ -22,21 +22,31 @@ jobs:
|
||||||
build-essential \
|
build-essential \
|
||||||
ccache \
|
ccache \
|
||||||
clang \
|
clang \
|
||||||
|
cmake \
|
||||||
cvc5 \
|
cvc5 \
|
||||||
|
default-jre-headless \
|
||||||
flex \
|
flex \
|
||||||
|
g++ \
|
||||||
gawk \
|
gawk \
|
||||||
git \
|
git \
|
||||||
|
libantlr4-runtime-dev \
|
||||||
libboost-filesystem-dev \
|
libboost-filesystem-dev \
|
||||||
|
libboost-iostreams-dev \
|
||||||
|
libboost-program-options-dev \
|
||||||
libboost-python-dev \
|
libboost-python-dev \
|
||||||
libboost-system-dev \
|
libboost-system-dev \
|
||||||
|
libboost-thread-dev \
|
||||||
|
libeigen3-dev \
|
||||||
libffi-dev \
|
libffi-dev \
|
||||||
libreadline-dev \
|
libreadline-dev \
|
||||||
lld \
|
lld \
|
||||||
|
openfpgaloader \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
python3 \
|
python3 \
|
||||||
python3-click \
|
python3-click \
|
||||||
|
python3-venv \
|
||||||
tcl-dev \
|
tcl-dev \
|
||||||
z3 \
|
uuid-dev \
|
||||||
zlib1g-dev
|
zlib1g-dev
|
||||||
- run: |
|
- run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.89.0
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.89.0
|
||||||
|
@ -49,9 +59,14 @@ jobs:
|
||||||
key: ${{ needs.deps.outputs.cache-primary-key }}
|
key: ${{ needs.deps.outputs.cache-primary-key }}
|
||||||
fail-on-cache-miss: true
|
fail-on-cache-miss: true
|
||||||
- run: |
|
- run: |
|
||||||
|
source deps/venv/bin/activate
|
||||||
|
echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> "$FORGEJO_ENV"
|
||||||
|
echo "$VIRTUAL_ENV/bin" >> "$FORGEJO_PATH"
|
||||||
|
make -C deps/prjxray/build install
|
||||||
make -C deps/z3/build install
|
make -C deps/z3/build install
|
||||||
make -C deps/sby install
|
make -C deps/sby install
|
||||||
make -C deps/yosys install
|
make -C deps/yosys install
|
||||||
|
make -C deps/nextpnr-xilinx/build install
|
||||||
export PATH="$(realpath deps/firtool/bin):$PATH"
|
export PATH="$(realpath deps/firtool/bin):$PATH"
|
||||||
echo "$PATH" >> "$GITHUB_PATH"
|
echo "$PATH" >> "$GITHUB_PATH"
|
||||||
- uses: https://git.libre-chip.org/mirrors/rust-cache@v2
|
- uses: https://git.libre-chip.org/mirrors/rust-cache@v2
|
||||||
|
@ -62,3 +77,4 @@ jobs:
|
||||||
- run: cargo test --doc --features=unstable-doc
|
- run: cargo test --doc --features=unstable-doc
|
||||||
- run: cargo doc --features=unstable-doc
|
- run: cargo doc --features=unstable-doc
|
||||||
- run: FAYALITE_TEST_HASHER=always_zero cargo test --test=module --features=unstable-doc,unstable-test-hasher
|
- run: FAYALITE_TEST_HASHER=always_zero cargo test --test=module --features=unstable-doc,unstable-test-hasher
|
||||||
|
- run: cargo run --example=blinky -- yosys-nextpnr-xray --nextpnr-xilinx-chipdb-dir deps/nextpnr-xilinx/xilinx --prjxray-db-dir deps/prjxray-db --device xc7a100ticsg324-1L -o target/blinky-out --clock-frequency=$((1000*1000*100))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue