forked from libre-chip/fayalite
25 lines
1.2 KiB
YAML
25 lines
1.2 KiB
YAML
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
# See Notices.txt for copyright information
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: debian-12
|
|
container:
|
|
image: git.libre-chip.org/libre-chip/fayalite-deps:latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- run: |
|
|
scripts/check-copyright.sh
|
|
- uses: https://git.libre-chip.org/mirrors/rust-cache@v2
|
|
with:
|
|
save-if: ${{ github.ref == 'refs/heads/master' }}
|
|
- run: cargo test
|
|
- run: cargo build --tests --features=unstable-doc
|
|
- run: cargo test --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: cargo run --example blinky yosys-nextpnr-xray --platform=arty-a7-100t --nextpnr-xilinx-chipdb-dir /opt/fayalite-deps/nextpnr-xilinx/xilinx --prjxray-db-dir /opt/fayalite-deps/prjxray-db -o target/blinky-out
|
|
- run: cargo run --example tx_only_uart yosys-nextpnr-xray --platform=arty-a7-100t --nextpnr-xilinx-chipdb-dir /opt/fayalite-deps/nextpnr-xilinx/xilinx --prjxray-db-dir /opt/fayalite-deps/prjxray-db -o target/tx_only_uart-out
|