Skip to content

Commit

Permalink
Upgrade CI docker images (#1020)
Browse files Browse the repository at this point in the history
* Upgrade CI docker images

* Remove @nowarn

* Unused import
  • Loading branch information
svroonland authored Jul 20, 2024
1 parent a9593c7 commit fc634af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
14 changes: 6 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
run_with_localstack:
parameters:
image:
default: hseeberger/scala-sbt:17.0.2_1.6.2_2.13.8
default: sbtscala/scala-sbt:eclipse-temurin-jammy-22_36_1.10.1_2.13.14
type: string
sbt_command:
type: string
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- "~/.m2"
release:
docker:
- image: hseeberger/scala-sbt:17.0.2_1.6.2_2.13.8
- image: sbtscala/scala-sbt:eclipse-temurin-jammy-22_36_1.10.1_2.13.14
steps:
- checkout
- run: git fetch --tags
Expand All @@ -63,13 +63,13 @@ workflows:
jobs:
- run_with_localstack:
name: lint
sbt_command: ++2.13.7! check
sbt_command: ++2.13.14! check
filters:
tags:
only: << pipeline.parameters.tag_regex >>
- run_with_localstack:
name: test3
image: hseeberger/scala-sbt:17.0.2_1.6.2_3.1.1
image: sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.2_13_1.9.9_3.3.1
sbt_command: ++3.3.1! core/test interopFutures/test
requires:
- lint
Expand All @@ -78,17 +78,15 @@ workflows:
only: << pipeline.parameters.tag_regex >>
- run_with_localstack:
name: test213
image: hseeberger/scala-sbt:17.0.2_1.6.2_2.13.8
sbt_command: ++2.13.13! interopFutures/compile core/test interopFutures/test Compile/doc
sbt_command: ++2.13.14! interopFutures/compile core/test interopFutures/test Compile/doc
requires:
- lint
filters:
tags:
only: << pipeline.parameters.tag_regex >>
- run_with_localstack:
name: test213_dynamic_consumer
image: hseeberger/scala-sbt:17.0.2_1.6.2_2.13.8
sbt_command: ++2.13.13! dynamicConsumer/test
sbt_command: ++2.13.14! dynamicConsumer/test
requires:
- lint
filters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ import software.amazon.awssdk.services.dynamodb.DynamoDbAsyncClientBuilder
import software.amazon.awssdk.services.kinesis.KinesisAsyncClientBuilder
import zio._

import scala.annotation.nowarn

/**
* A scala-native Future based interface to the zio-kinesis Producer
*/
Expand Down Expand Up @@ -69,7 +67,6 @@ object Producer {
* @return
* A Managed Producer
*/
@nowarn // Scala warns that Tag is unused, but removing it gives missing implicits errors
def make[T: Tag](
streamIdentifier: StreamIdentifier,
serializer: Serializer[Any, T],
Expand Down

0 comments on commit fc634af

Please sign in to comment.