Skip to content

Commit 4aaa48b

Browse files
committed
Updating versions
1 parent 791bfc2 commit 4aaa48b

File tree

8 files changed

+14
-18
lines changed

8 files changed

+14
-18
lines changed

.github/workflows/integration.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ jobs:
2121
- uses: coursier/setup-action@v1.2.0
2222
with:
2323
jvm: temurin:1.21
24-
apps: sbt sbtn
25-
- uses: coursier/cache-action@v6.3
24+
apps: sbt
2625

2726
- name: Install Redis
2827
run: sudo apt-get install redis-server
@@ -37,8 +36,8 @@ jobs:
3736
- name: Build
3837
working-directory: integration
3938
run: |
40-
sbtn clean
41-
sbtn scalafmtCheck
39+
sbt clean
40+
sbt scalafmtCheck
4241
4342
- name: Check port
4443
run: |

.github/workflows/iris.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ jobs:
1818
- uses: coursier/setup-action@v1.2.0
1919
with:
2020
jvm: temurin:1.21
21-
apps: sbt sbtn
22-
- uses: coursier/cache-action@v6.3
21+
apps: sbt
2322

2423
- name: Install Redis
2524
run: sudo apt-get install redis-server
@@ -34,8 +33,8 @@ jobs:
3433
- name: Build
3534
working-directory: iris
3635
run: |
37-
sbtn clean
38-
sbtn scalafmtCheck
36+
sbt clean
37+
sbt scalafmtCheck
3938
4039
- name: Tests
4140
working-directory: iris

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
with:
1919
jvm: temurin:1.21
2020
apps: sbt sbtn
21-
- uses: coursier/cache-action@v6.3
2221
- uses: actions/setup-node@v4
2322
with:
2423
node-version: "22.14.0"

.github/workflows/wfos.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ jobs:
1818
- uses: coursier/setup-action@v1.2.0
1919
with:
2020
jvm: temurin:1.21
21-
apps: sbt sbtn
22-
- uses: coursier/cache-action@v6.3
21+
apps: sbt
2322

2423
- name: Install Redis
2524
run: sudo apt-get install redis-server
@@ -34,8 +33,8 @@ jobs:
3433
- name: Build
3534
working-directory: wfos
3635
run: |
37-
sbtn clean
38-
sbtn scalafmtCheck
36+
sbt clean
37+
sbt scalafmtCheck
3938
4039
- name: Tests
4140
working-directory: wfos

integration/project/Common.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ object Common extends AutoPlugin {
3333
Compile / doc / javacOptions ++= Seq("-Xdoclint:none"),
3434
Test / testOptions ++= reporterOptions,
3535
resolvers += "jitpack" at "https://jitpack.io",
36-
version := "0.3.0",
36+
version := "0.4.0",
3737
fork := true,
3838
Test / parallelExecution := false,
3939
autoCompilerPlugins := true,

iris/project/Common.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ object Common extends AutoPlugin {
3535
Compile / doc / javacOptions ++= Seq("-Xdoclint:none"),
3636
Test / testOptions ++= reporterOptions,
3737
resolvers += "jitpack" at "https://jitpack.io",
38-
version := "0.3.0",
38+
version := "0.4.0",
3939
fork := true,
4040
Test / parallelExecution := false,
4141
autoCompilerPlugins := true,

simulation-scripts/install-tcs-assemblies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
88
elif [ "$USER" == "jenkins" ]; then
99
# this zip is used when we run tcs assembly on BTE
1010
# V_SLICE_ZIP="https://github.com/tmtsoftware/tcs-vslice-0.4/releases/download/v$version/tcs-vslice-$version-CentOS-7.zip"
11-
V_SLICE_ZIP="https://github.com/tmtsoftware/tcs-vslice-0.4/releases/download/v$version/tcs-vslice-$version-Ubuntu-20.04.zip"
11+
V_SLICE_ZIP="https://github.com/tmtsoftware/tcs-vslice-0.4/releases/download/v$version/tcs-vslice-$version-Ubuntu-22.04.zip"
1212
else
1313
# this zip is used when we run tcs assembly on ubuntu
14-
V_SLICE_ZIP="https://github.com/tmtsoftware/tcs-vslice-0.4/releases/download/v$version/tcs-vslice-$version-Ubuntu-20.04.zip"
14+
V_SLICE_ZIP="https://github.com/tmtsoftware/tcs-vslice-0.4/releases/download/v$version/tcs-vslice-$version-Ubuntu-22.04.zip"
1515
fi
1616

1717
TCS_VSLICE="$HOME/tcs-vslice-04"

wfos/project/Common.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ object Common extends AutoPlugin {
3636
Compile / doc / javacOptions ++= Seq("-Xdoclint:none"),
3737
Test / testOptions ++= reporterOptions,
3838
resolvers += "jitpack" at "https://jitpack.io",
39-
version := "0.3.0",
39+
version := "0.4.0",
4040
fork := true,
4141
Test / parallelExecution := false,
4242
autoCompilerPlugins := true,

0 commit comments

Comments
 (0)