Skip to content

Commit b1a50d1

Browse files
committed
Remove commons-redis from test suite
1 parent 6feaa16 commit b1a50d1

File tree

3 files changed

+1
-34
lines changed

3 files changed

+1
-34
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ on:
1616

1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19-
REDIS_VERSION: 6.2.12
2019

2120
jobs:
2221
build:
@@ -52,12 +51,6 @@ jobs:
5251
- name: Setup sbt
5352
uses: sbt/setup-sbt@v1
5453

55-
- name: Cache Redis
56-
uses: actions/cache@v2
57-
with:
58-
path: ./redis-${{ env.REDIS_VERSION }}
59-
key: ${{ runner.os }}-redis-cache-v2-${{ env.REDIS_VERSION }}
60-
6154
- name: Setup Node.js
6255
uses: actions/setup-node@v2
6356
with:
@@ -69,9 +62,6 @@ jobs:
6962
mongodb-version: 7.0
7063
mongodb-replica-set: test-rs
7164

72-
- name: Setup Redis
73-
run: ./install-redis.sh
74-
7565
- name: Check that workflows are up to date
7666
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck
7767

install-redis.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

project/Commons.scala

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,9 @@ object Commons extends ProjectGroup("commons") {
7373

7474
githubWorkflowTargetTags ++= Seq("v*"),
7575

76-
githubWorkflowEnv ++= Map(
77-
"REDIS_VERSION" -> "6.2.12",
78-
),
7976
githubWorkflowArtifactUpload := false,
8077
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17"), JavaSpec.temurin("21")),
8178
githubWorkflowBuildPreamble ++= Seq(
82-
WorkflowStep.Use(
83-
UseRef.Public("actions", "cache", "v2"),
84-
name = Some("Cache Redis"),
85-
params = Map(
86-
"path" -> "./redis-${{ env.REDIS_VERSION }}",
87-
"key" -> "${{ runner.os }}-redis-cache-v2-${{ env.REDIS_VERSION }}"
88-
)
89-
),
9079
WorkflowStep.Use(
9180
UseRef.Public("actions", "setup-node", "v2"),
9281
name = Some("Setup Node.js"),
@@ -100,10 +89,6 @@ object Commons extends ProjectGroup("commons") {
10089
"mongodb-replica-set" -> "test-rs",
10190
)
10291
),
103-
WorkflowStep.Run(
104-
List("./install-redis.sh"),
105-
name = Some("Setup Redis"),
106-
)
10792
),
10893

10994
githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))),
@@ -338,6 +323,7 @@ object Commons extends ProjectGroup("commons") {
338323
),
339324
Test / parallelExecution := false,
340325
Compile / scalacOptions += "-Wconf:cat=deprecation:is", // only inform about deprecations due to scheduled removal
326+
Test / skip := true,
341327
)
342328

343329
lazy val hocon = mkSubProject

0 commit comments

Comments
 (0)