Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into arcade
Browse files Browse the repository at this point in the history
  • Loading branch information
jggoebel committed Jun 21, 2024
2 parents 09f7074 + beac8f7 commit 9bfcd1c
Show file tree
Hide file tree
Showing 236 changed files with 40,960 additions and 11,434 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,93 @@ jobs:
path: ./v3/services/conversionsvc
image: conversion-service
secrets: inherit
build-course-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/coursesvc
image: course-service
secrets: inherit
build-dbconfig-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/dbconfigsvc
image: dbconfig-service
secrets: inherit
build-environment-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/environmentsvc
image: environment-service
secrets: inherit
build-progress-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/progresssvc
image: progress-service
secrets: inherit
build-rbac-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/rbacsvc
image: rbac-service
secrets: inherit
build-scenario-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/scenariosvc
image: scenario-service
secrets: inherit
build-scheduledevent-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/scheduledeventsvc
image: scheduledevent-service
secrets: inherit
build-session-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/sessionsvc
image: session-service
secrets: inherit
build-setting-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/settingsvc
image: setting-service
secrets: inherit
build-terraform-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/terraformsvc
image: terraform-service
secrets: inherit
build-user-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/usersvc
image: user-service
secrets: inherit
build-vmclaim-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/vmclaimsvc
image: vmclaim-service
secrets: inherit
build-vmset-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/vmsetsvc
image: vmset-service
secrets: inherit
build-vm-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/vmsvc
image: vm-service
secrets: inherit
build-vmtemplate-service:
uses: ./.github/workflows/build.yaml
with:
path: ./v3/services/vmtemplatesvc
image: vmtemplate-service
secrets: inherit
2 changes: 1 addition & 1 deletion generate-protos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ docker run --rm \
-c "apt-get update && apt-get install -y protobuf-compiler && \
export PATH=\$PATH:/go/bin && \
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest && \
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest && \
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0 && \
find ${PROTO_DIR} -type f -name '*.proto' -exec bash -c ' \
protoc -I ${PROTO_DIR} \
--go_out=./protos \
Expand Down
12 changes: 12 additions & 0 deletions go.work
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,16 @@ use (
./v3/services/settingsvc
./v3/services/usersvc
./v3/services/scoresvc
./v3/services/dbconfigsvc
./v3/services/vmclaimsvc
./v3/services/vmsetsvc
./v3/services/progresssvc
./v3/services/vmtemplatesvc
./v3/services/vmsvc
./v3/services/sessionsvc
./v3/services/scheduledeventsvc
./v3/services/environmentsvc
./v3/services/scenariosvc
./v3/services/coursesvc
./v3/services/terraformsvc
)
Loading

0 comments on commit 9bfcd1c

Please sign in to comment.