From bbd7fc4115728ecc7cf88bf0524f2126d8220c34 Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Tue, 19 Jan 2021 11:51:33 -0800 Subject: Switch from Travis to Github Actions CI (#2041) * Fix .run_formal_checks for Github Actions instead of Travis * Remove .run_chisel_tests Because we publish SNAPSHOTs on every merge to master, the Chisel repo checks against master of FIRRTL regularly * Only run unidoc for Scala 2.12 Under Travis we ran for 2.11, 2.12, and 2.13, but it doesn't work when using ++2.. when major != to 2.12. It seems if we want to run all 3, we have to run as `sbt +unidoc`. It's not clear how much benefit we get from building on the other versions, so stick with 2.12 for now. * Generate .mergify.yml with script in chisel-repo-tools Generated with config: conditions: - status-success=all tests passed branches: - 1.2.x - 1.3.x - 1.4.x--- scripts/formal_equiv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/formal_equiv.sh b/scripts/formal_equiv.sh index 2304b74e..c3d45357 100755 --- a/scripts/formal_equiv.sh +++ b/scripts/formal_equiv.sh @@ -28,7 +28,7 @@ make_verilog () { git checkout $1 local filename="$DUT.$1.v" - sbt "runMain firrtl.Driver -i $DUT.fir -o $filename -X verilog" + sbt "runMain firrtl.stage.FirrtlMain -i $DUT.fir -o $filename -X verilog" RET=$filename } -- cgit v1.2.3