Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Scala CLI Template (backport #3757) #3759

Merged
merged 2 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-scala-cli-template/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ runs:
- name: Cache Scala-CLI
uses: coursier/cache-action@v6
- name: Setup Scala-CLI
uses: VirtusLab/scala-cli-setup@v0.2.1
uses: VirtusLab/scala-cli-setup@v1
with:
jvm: adoptium:1.17
jvm: adoptium:17
apps: sbt
- name: Generate Scala CLI Template
shell: bash
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
//> using repository "sonatype-s01:snapshots"
//> using scala "2.13.10"
//> using lib "org.chipsalliance::chisel::@VERSION@"
//> using dep "org.chipsalliance::chisel::@VERSION@"
//> using plugin "org.chipsalliance:::chisel-plugin::@VERSION@"
//> using options "-unchecked", "-deprecation", "-language:reflectiveCalls", "-feature", "-Xcheckinit", "-Xfatal-warnings", "-Ywarn-dead-code", "-Ywarn-unused", "-Ymacro-annotations"

import chisel3._
import circt.stage.ChiselStage
// _root_ disambiguates from package chisel3.util.circt if user imports chisel3.util._
import _root_.circt.stage.ChiselStage

class Foo extends Module {
val a, b, c = IO(Input(Bool()))
Expand Down
Loading