Add another triangle #145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2023 Alan Jian ([email protected]) | |
# SPDX-License-Identifier: MIT | |
name: Verilator CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install the JVM and Verilator | |
run: | | |
sudo apt-get update | |
sudo apt-get install default-jdk verilator libsdl2-dev | |
- name: Install Firtool | |
run: | | |
wget -q -O - https://github.com/llvm/circt/releases/download/firtool-1.38.0/firrtl-bin-ubuntu-20.04.tar.gz | tar -zx | |
echo "$GITHUB_WORKSPACE/firtool-1.38.0/bin" >> $GITHUB_PATH | |
- name: Build | |
run: | | |
sbt run | |
make -C verilator | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: trinity | |
path: verilator/obj_dir/trinity |