Add supprot for Zba, Zbb and Zbc (#28) #11
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
name: CrossVersionTest | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Cross version publishLocal test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: [email protected] | |
- name: Cache Scala | |
uses: coursier/cache-action@v5 | |
- name: Defalut publishLocal Test | |
run: sbt publishLocal | |
- name: Chisel3 publishLocal Test | |
run: sbt publishLocal -DChiselVersion=3.6.0 | |
- name: Chisel6 publishLocal Test | |
run: sbt publishLocal -DChiselVersion=6.4.0 -DScalaVersion=2.13.12 | |
- name: Chisel7 publishLocal Test | |
run: sbt publishLocal -DChiselVersion=7.0.0-M2 -DScalaVersion=2.13.12 |