-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (49 loc) · 1.36 KB
/
service-discovery-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
55
name: Build and test
on:
push:
branches: [ main ]
paths:
- service-discovery-app/**
- service-discovery-ft/**
- gradle/libs.versions.toml
pull_request:
branches: [ main ]
paths:
- service-discovery-app/**
- service-discovery-ft/**
- gradle/libs.versions.toml
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'debug'
type: choice
options:
- info
- warning
- debug
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- name: Build + unit tests
run: ./gradlew --no-daemon :service-discovery-app:build
- name: Start Spring Boot app
run: java -jar service-discovery-app/build/libs/service-discovery.jar &
- name: Wait for Spring Boot to start
run: |
echo "Waiting for Spring Boot to start..."
sleep 5
- name: Run functional tests
run: ./gradlew --no-daemon :service-discovery-ft:cucumber
- name: Stop Spring Boot app
run: |
echo "Stopping Spring Boot app..."
pkill -f 'java -jar service-discovery-app/build/libs/service-discovery.jar'