-
Notifications
You must be signed in to change notification settings - Fork 0
121 lines (98 loc) · 3.17 KB
/
Copy pathbuild.yml
File metadata and controls
121 lines (98 loc) · 3.17 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: Build
on: [push]
env:
SERVICE_NAME: feature.manager
SERVICE_NAME_CAPITALIZED: Feature.Manager
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.100
- name: Build
run: dotnet build --configuration Release ./$SERVICE_NAME_CAPITALIZED.Api/$SERVICE_NAME_CAPITALIZED.Api.csproj
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.100
- name: Run Unit Tests
run: cd $SERVICE_NAME_CAPITALIZED.UnitTest && dotnet test
build-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build Docker Image
run: |
TAG=`git rev-parse --short=4 ${GITHUB_SHA}`
echo "${{ secrets.DOCKERHUB_PASSWORD }}" | docker login --username "${{ secrets.DOCKERHUB_LOGIN }}" --password-stdin
docker build . -t fossapps/$SERVICE_NAME --build-arg VERSION=$TAG
docker tag fossapps/$SERVICE_NAME fossapps/$SERVICE_NAME:$TAG
docker push fossapps/$SERVICE_NAME:$TAG
run-postman-tests:
needs: build-docker-image
runs-on: ubuntu-latest
steps:
- name: Pull Docker Image
uses: actions/checkout@v1
with:
name: docker-pull
- name: 'Load Docker Image'
run: |
TAG=`git rev-parse --short=4 ${GITHUB_SHA}`
docker pull fossapps/$SERVICE_NAME:$TAG
- name: Spin-up Containers
run: |
TAG=`git rev-parse --short=4 ${GITHUB_SHA}`
TAG=$TAG docker-compose -f ./docker-compose.ci.yml up -d
- name: Run Postman Tests
run: |
cd ./${SERVICE_NAME_CAPITALIZED}.UnitTest/ExternalTests
sh ./postman_tests.sh
test-sdk:
needs: build-docker-image
runs-on: ubuntu-latest
steps:
- name: Pull Docker Image
uses: actions/checkout@v1
with:
name: docker-pull
- name: 'Load Docker Image'
run: |
TAG=`git rev-parse --short=4 ${GITHUB_SHA}`
docker pull fossapps/$SERVICE_NAME:$TAG
- name: Spin-up Containers
run: |
TAG=`git rev-parse --short=4 ${GITHUB_SHA}`
TAG=$TAG docker-compose -f ./docker-compose.ci.yml up -d
- name: Generate and Test SDK
run: |
cd ./Sdk
sh ./generate_sdk.sh
cd ../
dotnet build
cd Sdk.Test
dotnet test
publish:
needs: [ build-docker-image, run-postman-tests, test-sdk ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
DOCKERHUB_LOGIN: ${{secrets.DOCKERHUB_LOGIN}}
DOCKERHUB_PASSWORD: ${{secrets.DOCKERHUB_PASSWORD}}
with:
extra_plugins: |
@semantic-release/git@7.0.18
@semantic-release/exec@3.3.8
@semantic-release/changelog@3.0.0