Skip to content

Commit a87a945

Browse files
committed
ci: Add concurrency option
1 parent c04cbc6 commit a87a945

File tree

8 files changed

+23
-2
lines changed

8 files changed

+23
-2
lines changed

.github/workflows/game-image-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
paths:
1414
- 'game-service/**'
1515

16+
concurrency:
17+
group: ${{ github.ref }}
18+
cancel-in-progress: false
19+
1620
jobs:
1721
build:
1822
runs-on: ubuntu-latest

.github/workflows/gateway-image-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
paths:
1414
- 'gateway-service/**'
1515

16+
concurrency:
17+
group: ${{ github.ref }}
18+
cancel-in-progress: false
19+
1620
jobs:
1721
build:
1822
runs-on: ubuntu-latest

.github/workflows/matching-image-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
paths:
1414
- 'matching-service/**'
1515

16+
concurrency:
17+
group: ${{ github.ref }}
18+
cancel-in-progress: false
19+
1620
jobs:
1721
build:
1822
runs-on: ubuntu-latest

.github/workflows/quiz-image-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
paths:
1414
- 'quiz-service/**'
1515

16+
concurrency:
17+
group: ${{ github.ref }}
18+
cancel-in-progress: false
19+
1620
jobs:
1721
build:
1822
runs-on: ubuntu-latest

.github/workflows/user-image-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
paths:
1414
- 'user-service/**'
1515

16+
concurrency:
17+
group: ${{ github.ref }}
18+
cancel-in-progress: false
19+
1620
jobs:
1721
build:
1822
runs-on: ubuntu-latest

gateway-service/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ RUN mkdir -p ${MODULE_NAME}/build/extracted && (java -Djarmode=layertools -jar $
1414
FROM eclipse-temurin:17-jdk
1515
VOLUME /tmp
1616

17+
RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
18+
ENV TZ=Asia/Seoul
19+
1720
RUN apt-get update && apt-get install -y curl
1821

1922
ARG MODULE_NAME=gateway-service

matching-service/matching-application/app-api/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dependencies {
88
implementation("org.springframework.boot:spring-boot-starter-web")
99
implementation("org.springframework.boot:spring-boot-starter-actuator")
1010

11-
//swagger
1211
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")
1312

1413
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")

user-service/user-application/app-api/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dependencies {
88
implementation("org.springframework.boot:spring-boot-starter-web")
99
implementation("org.springframework.boot:spring-boot-starter-actuator")
1010

11-
//swagger
1211
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")
1312

1413
// JWT

0 commit comments

Comments
 (0)