Skip to content

Commit

Permalink
ci: Add concurrency option
Browse files Browse the repository at this point in the history
  • Loading branch information
JiwonKKang committed Dec 5, 2024
1 parent c04cbc6 commit 038ab9b
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/game-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'game-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/gateway-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'gateway-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/matching-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'matching-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/quiz-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'quiz-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/user-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'user-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions gateway-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ RUN mkdir -p ${MODULE_NAME}/build/extracted && (java -Djarmode=layertools -jar $
FROM eclipse-temurin:17-jdk
VOLUME /tmp

RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
ENV TZ=Asia/Seoul

RUN apt-get update && apt-get install -y curl

ARG MODULE_NAME=gateway-service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-actuator")

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

implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
Expand Down
1 change: 0 additions & 1 deletion user-service/user-application/app-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-actuator")

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

// JWT
Expand Down

0 comments on commit 038ab9b

Please sign in to comment.