Skip to content

Commit

Permalink
Update coursier to 2.0.16-169-g194ebc55c (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault authored Oct 11, 2021
1 parent aac70a4 commit 48583db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions project/deps.sc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object TestDeps {
object Deps {
object Versions {
// jni-utils version may need to be sync-ed when bumping the coursier version
def coursier = "2.0.16-161-g8a1b8eae5"
def coursier = "2.0.16-169-g194ebc55c"

def scalaJs = "1.5.1"
def scalaMeta = "4.4.28"
Expand Down Expand Up @@ -93,9 +93,9 @@ object Deps {

def graalVmVersion = "21.2.0"

def csDockerVersion = "2.0.16"
def csDockerVersion = Deps.Versions.coursier

def buildCsVersion = "2.0.16"
def buildCsVersion = Deps.Versions.coursier

object Docker {
def muslBuilder =
Expand Down
6 changes: 3 additions & 3 deletions project/settings.sc
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ trait CliLaunchers extends SbtModule { self =>
imageName = "ubuntu:18.04",
prepareCommand = "apt-get update -q -y && apt-get install -q -y build-essential libz-dev",
csUrl =
s"https://github.com/coursier/coursier/releases/download/v${deps.csDockerVersion}/cs-x86_64-pc-linux",
s"https://github.com/coursier/coursier/releases/download/v${deps.csDockerVersion}/cs-x86_64-pc-linux.gz",
extraNativeImageArgs = Nil
)
)
Expand All @@ -308,7 +308,7 @@ trait CliLaunchers extends SbtModule { self =>
def nativeImageDockerParams = Some(
NativeImage.linuxStaticParams(
Docker.muslBuilder,
s"https://github.com/coursier/coursier/releases/download/v${deps.csDockerVersion}/cs-x86_64-pc-linux"
s"https://github.com/coursier/coursier/releases/download/v${deps.csDockerVersion}/cs-x86_64-pc-linux.gz"
)
)
}
Expand All @@ -317,7 +317,7 @@ trait CliLaunchers extends SbtModule { self =>
def nativeImageDockerParams = Some(
NativeImage.linuxMostlyStaticParams(
"ubuntu:18.04", // TODO Pin that
s"https://github.com/coursier/coursier/releases/download/v${deps.csDockerVersion}/cs-x86_64-pc-linux"
s"https://github.com/coursier/coursier/releases/download/v${deps.csDockerVersion}/cs-x86_64-pc-linux.gz"
)
)
}
Expand Down

0 comments on commit 48583db

Please sign in to comment.