Skip to content

Commit

Permalink
Merge branch 'main' into LIVE-6383-implement-batch-send
Browse files Browse the repository at this point in the history
  • Loading branch information
waisingyiu authored Apr 15, 2024
2 parents 0d25258 + 0659bd6 commit e937b6b
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/event-consumer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}

- name: Compile, test and assembly
run: sbt "project eventconsumer" "compile" "test" "assembly"
run: sbt "project commoneventconsumer" "compile" "test" "project eventconsumer" "compile" "test" "assembly"

- name: Copy jar to root
run: cp eventconsumer/target/scala-*/eventconsumer.jar .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fake-breaking-news.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}

- name: Compile, test and assembly
run: sbt "project fakebreakingnewslambda" "compile" "test" "assembly"
run: sbt "project common" "compile" "test" "project api-models" "compile" "test" "project fakebreakingnewslambda" "compile" "test" "assembly"

- name: Copy jar to root
run: cp fakebreakingnewslambda/target/scala-*/fakebreakingnewslambda.jar .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/football.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}

- name: Compile, test and assembly
run: sbt "project football" "compile" "test" "assembly"
run: sbt "project api-models" "compile" "test" "project football" "compile" "test" "assembly"

- name: Copy jar to root
run: cp football/target/scala-*/football.jar .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notification-worker-lambdas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
mask-password: 'true'

- name: Compile and test
run: sbt "project notificationworkerlambda" "compile" "test"
run: sbt "project common" "compile" "test" "project notificationworkerlambda" "compile" "test"

- name: Build docker image
run: sbt docker:publishLocal
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}

- name: Compile, test and package
run: sbt "project notification" "compile" "test" "debian:packageBin"
run: sbt "project common" "compile" "test" "project commonscheduledynamodb" "compile" "test" "project notification" "compile" "test" "debian:packageBin"

- name: Upload to riff-raff
uses: guardian/actions-riff-raff@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/registration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
npm run synth
- name: Compile, test and package
run: sbt "project registration" "compile" "test" "debian:packageBin"
run: sbt "project common" "compile" "test" "project registration" "compile" "test" "debian:packageBin"

- name: Upload to riff-raff
uses: guardian/actions-riff-raff@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report-extractor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}

- name: Compile, test and assembly
run: sbt "project reportextractor" "compile" "test" "assembly"
run: sbt "project common" "compile" "test" "project reportextractor" "compile" "test" "assembly"

- name: Copy jar to root
run: cp reportextractor/target/scala-*/reportextractor.jar .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}

- name: Compile, test and package
run: sbt "project report" "compile" "test" "debian:packageBin"
run: sbt "project common" "compile" "test" "project report" "compile" "test" "debian:packageBin"

- name: Upload to riff-raff
uses: guardian/actions-riff-raff@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-lambda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}

- name: Compile, test and assembly
run: sbt "project schedule" "compile" "test" "assembly"
run: sbt "project commonscheduledynamodb" "compile" "test" "project schedule" "compile" "test" "assembly"

- name: Copy jar to root
run: cp schedulelambda/target/scala-*/schedule.jar .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slo-monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}

- name: Compile, test and assembly
run: sbt "project slomonitor" "compile" "test" "assembly"
run: sbt "project commoneventconsumer" "compile" "test" "project slomonitor" "compile" "test" "assembly"

- name: Copy jar to root
run: cp slomonitor/target/scala-*/slomonitor.jar .
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ThisBuild / scalacOptions ++= compilerOptions

val playJsonVersion = "2.10.3"
val specsVersion: String = "4.8.3"
val awsSdkVersion: String = "1.12.672"
val awsSdkVersion: String = "1.12.677"
val doobieVersion: String = "0.13.4"
val catsVersion: String = "2.10.0"
val okHttpVersion: String = "4.12.0"
Expand Down
4 changes: 2 additions & 2 deletions notification/conf/notification.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Mappings:
NewsstandNotificationAlarmThreshold: 0
NotificationAlarmPeriod: 1200
ScheduleApp: schedule
InstanceType: "t4g.micro"
InstanceType: "t4g.small"
PROD:
CPUAlarmPeriodLower: 300
CPUAlarmPeriodUpper: 60
Expand All @@ -30,7 +30,7 @@ Mappings:
NewsstandNotificationAlarmThreshold: 1
NotificationAlarmPeriod: 1200
ScheduleApp: schedule
InstanceType: "t4g.micro"
InstanceType: "t4g.small"

Outputs:
LoadBalancerUrl:
Expand Down

0 comments on commit e937b6b

Please sign in to comment.