-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (85 loc) · 2.87 KB
/
test-and-build.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
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
name: Test and create Docker image
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
cache: 'maven'
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn --file pom.xml clean install
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload .jar file
uses: actions/upload-artifact@v4
with:
name: transitdata-stop-cancellation-source.jar
path: target/transitdata-stop-cancellation-source.jar
build-develop-docker-image:
needs: test
runs-on: ubuntu-latest
# Run only on develop branch
if: github.ref == 'refs/heads/develop'
steps:
- uses: actions/checkout@v2
- name: Download .jar file
uses: actions/download-artifact@v4
with:
name: transitdata-stop-cancellation-source.jar
path: target
- name: Build and publish develop Docker image
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: hsldevcom/transitdata-stop-cancellation-source
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: develop
build-release-docker-image:
needs: test
runs-on: ubuntu-latest
# Run only for tagged commits
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v2
- name: Download .jar file
uses: actions/download-artifact@v4
with:
name: transitdata-stop-cancellation-source.jar
path: target
- name: Build and publish release Docker image
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: hsldevcom/transitdata-stop-cancellation-source
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tag_semver: true
build-aks-dev-docker-image:
needs: test
runs-on: ubuntu-latest
# Run only on aks-dev branch
if: github.ref == 'refs/heads/aks-dev'
steps:
- uses: actions/checkout@v2
- name: Download .jar file
uses: actions/download-artifact@v4
with:
name: transitdata-stop-cancellation-source.jar
path: target
- name: Build and publish aks-dev Docker image
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: hsldevcom/transitdata-stop-cancellation-source
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: aks-dev