Skip to content

Commit

Permalink
Updated dependencies, keycloak versions
Browse files Browse the repository at this point in the history
  • Loading branch information
abrighton committed Oct 24, 2023
1 parent 0c1837b commit 4c53f71
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/branchLinkCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: branch-0.3.x
- uses: coursier/setup-action@v1.2.0-M2
- uses: coursier/setup-action@v1
with:
jvm: temurin:1.17
- uses: coursier/cache-action@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/masterLinkCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: coursier/setup-action@v1.2.0-M2
- uses: actions/checkout@v3
- uses: coursier/setup-action@v1
with:
jvm: temurin:1.17
- uses: coursier/cache-action@v6
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ jobs:
release:
runs-on: ubuntu-latest
env:
CSW_VERSION: "5.0.1"
ESW_OCS_ENG_UI_VERSION: "0.3.1"
CSW_VERSION: "5726045"
ESW_OCS_ENG_UI_VERSION: "0.3.1.TODO"
steps:
- uses: actions/checkout@v2
- uses: coursier/setup-action@v1.2.0-M2
- uses: actions/checkout@v3
- uses: coursier/setup-action@v1
with:
jvm: temurin:1.17
apps: sbt sbtn
- uses: coursier/cache-action@v6

- uses: actions/setup-node@v1
with:
node-version: "16.x"
node-version: "20.6.1"
registry-url: "https://registry.npmjs.org"

- name: Install Redis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ include required("logging.conf")
agent {
osw.version.confPath = "/tmt/osw/version.conf"

coursier.channel: "https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.prod.json"
// coursier.channel: "https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.prod.json"
coursier.channel: "https://raw.githubusercontent.com/tmtsoftware/osw-apps/Allan/pekko-scala3-update/apps.prod.json"
}

csw-logging {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package esw.agent.pekko.app

object Cs {
val channel = "https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
// val channel = "https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
val channel = "https://raw.githubusercontent.com/tmtsoftware/osw-apps/Allan/pekko-scala3-update/apps.json"
}
3 changes: 2 additions & 1 deletion esw-integration-test/src/test/scala/esw/shell/MainTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ class MainTest extends BaseTestSuite {

// XXX Ignoring for now, since apps.json has not been updated to use this branch
"verify esw-shell compiles and starts successfully" ignore {
val channel = "https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
// val channel = "https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
val channel = "https://raw.githubusercontent.com/tmtsoftware/osw-apps/Allan/pekko-scala3-update/apps.json"
val version = "0.1.0-SNAPSHOT"
val commands = List("cs", "launch", "--channel", channel, s"esw-shell:$version")
val processBuilder = new ProcessBuilder(commands: _*)
Expand Down
3 changes: 2 additions & 1 deletion esw-services/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ esw.sm.obsModeConfigPath = "/smObsModeConfig.conf"

csw-networks.hostname.automatic = on

agent.coursier.channel: "https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
//agent.coursier.channel: "https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
agent.coursier.channel: "https://raw.githubusercontent.com/tmtsoftware/osw-apps/Allan/pekko-scala3-update/apps.json"
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml"

resolvers += "jitpack" at "https://jitpack.io"

libraryDependencies += "com.github.tmtsoftware" % "kotlin-plugin" % "793d9f9"
libraryDependencies += "com.github.tmtsoftware" % "kotlin-plugin" % "7d3eb82"

libraryDependencies += "com.github.tmtsoftware" % "sbt-docs" % "ac4d094"
libraryDependencies += "com.github.tmtsoftware" % "sbt-docs" % "58a91e5"

resolvers += Resolver.jcenterRepo
addSbtPlugin("net.aichler" % "sbt-jupiter-interface" % "0.11.1")
Expand Down
3 changes: 2 additions & 1 deletion scripts/ocs_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ SCRIPT_PATH="$(
)"
SCRIPTS_VERSION=""
COURSIER="$(command -v cs)" || COURSIER="$SCRIPT_PATH/coursier"
APPS_PATH="https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
#APPS_PATH="https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
APPS_PATH="https://raw.githubusercontent.com/tmtsoftware/osw-apps/Allan/pekko-scala3-update/apps.json"
APP_NAME="esw-ocs-app"

# capture version number and store rest of the arguments to arr variable which then passed to cs launch
Expand Down
3 changes: 2 additions & 1 deletion scripts/script-launcher/launchSequencer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ if [[ ${OBS_MODE} == "" ]]; then
fi
# check if channel is available in env (used in test)
if [[ ${CS_CHANNEL} == "" ]]; then
CS_CHANNEL="https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
# CS_CHANNEL="https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json"
CS_CHANNEL="https://raw.githubusercontent.com/tmtsoftware/osw-apps/Allan/pekko-scala3-update/apps.json"
fi

# ---------------- Compiling ------------------
Expand Down

0 comments on commit 4c53f71

Please sign in to comment.