-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (102 loc) · 3.02 KB
/
build.yaml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: Build Master
on:
pull_request:
push:
branches:
- master
jobs:
# build-backend:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Set up JDK 17
# uses: actions/setup-java@v4
# with:
# java-version: "17"
# distribution: "adopt"
# - name: Validate Gradle wrapper
# uses: gradle/wrapper-validation-action@v3
# - name: Cache Gradle packages
# uses: actions/cache@v4
# with:
# path: |
# ~/.gradle/caches
# ~/.gradle/wrapper
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
# restore-keys: |
# ${{ runner.os }}-gradle-
# - name: Build with Gradle
# run: ./gradlew build
# - name: Cleanup Gradle Cache
# # Remove some files from the Gradle cache, so they aren't cached by GitHub Actions.
# # Restoring these files from a GitHub Actions cache might cause problems for future builds.
# run: |
# rm -f ~/.gradle/caches/modules-2/modules-2.lock
# rm -f ~/.gradle/caches/modules-2/gc.properties
#
# build-frontend:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Use Node 18.x
# uses: actions/setup-node@v4
# with:
# node-version: "18.x"
# cache: npm
# cache-dependency-path: app-ui/package-lock.json
# - name: Install dependencies
# run: npm install -D puppeteer karma-chrome-launcher --save-dev @babel/preset-typescript
# working-directory: app-ui
# - name: Build
# run: npm run build
# working-directory: app-ui
# - name: Test
# run: npm run test --no-watch --no-progress --browsers=ChromeHeadlessCI
# working-directory: app-ui
#
# cypress-run:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
#
# - name: Set up JDK 17
# uses: actions/setup-java@v4
# with:
# java-version: "17"
# distribution: "adopt"
#
# - name: Start Backend server
# run: ./gradlew bootRun --args='--spring.profiles.active=e2e' &
#
# - name: Cypress run
# uses: cypress-io/github-action@v6
# with:
# working-directory: app-ui
# build: npm run build
# start: npm start
#
# - name: Upload screenshots
# uses: actions/upload-artifact@v4
# if: failure()
# with:
# name: cypress-screenshots
# path: /home/runner/work/StockMarketDashboard/StockMarketDashboard/app-ui/cypress/screenshots
#
# - name: Stop Backend server
# run: curl -X POST http://localhost:8080/actuator/shutdown
# if: always()
docker-compose:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Docker-compose
working-directory: ./docker
run: |
docker compose -f docker-compose.yml up -d
docker compose -f docker-compose.yml ps