-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Avimitin <[email protected]>
- Loading branch information
Showing
7 changed files
with
300 additions
and
504 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,4 @@ __pycache__ | |
test-results | ||
target | ||
.ccls-cache | ||
t1-sim-result/ |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import mill._ | ||
import mill.scalalib._ | ||
import mill.define.{Command, TaskModule} | ||
import mill.scalalib.publish._ | ||
import mill.scalalib.scalafmt._ | ||
import mill.scalalib.TestModule.Utest | ||
import mill.util.Jvm | ||
import coursier.maven.MavenRepository | ||
|
||
trait ScriptModule extends ScalaModule { | ||
val scala3 = "3.3.3" | ||
val mainargs = ivy"com.lihaoyi::mainargs:0.5.0" | ||
val oslib = ivy"com.lihaoyi::os-lib:0.10.0" | ||
val upickle = ivy"com.lihaoyi::upickle:3.3.1" | ||
|
||
def scalaVersion = scala3 | ||
def scalacOptions = Seq("-new-syntax", "-deprecation") | ||
override def ivyDeps = Agg(mainargs, oslib, upickle) | ||
} | ||
|
||
object emu extends ScriptModule {} | ||
object ci extends ScriptModule {} |
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
Oops, something went wrong.