-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (43 loc) · 1.42 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Backend CI
on:
push:
# pull_request:
branches:
- prod
- develop
- cicd/#61
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: action checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: |
chmod +x ./config-service/gradlew
chmod +x ./noti-service/gradlew
chmod +x ./user-service/gradlew
chmod +x ./weather-service/gradlew
- name: Build with Gradle - config
run: |
./config-service/gradlew clean build -x test |& tee config-build.log
cat config-build.log
env:
CONFIG_GIT_URI: ${{ secrets.CONFIG_GIT_URI }}
CONFIG_PASSPHRASE: ${{ secrets.CONFIG_PASSPHRASE }}
CONFIG_PRIVATE_KEY: ${{ secrets.CONFIG_PRIVATE_KEY }}
- name: Run config-service
run: ./config-service/gradlew bootRun &
- name: Wait for config-service to start
run: sleep 5
- name: Build with Gradle - noti-service
run: ./noti-service/gradlew clean build -x test
- name: Build with Gradle - user-service
run: ./user-service/gradlew clean build -x test
- name: Build with Gradle - weather-service
run: ./weather-service/gradlew clean build -x test