-
Notifications
You must be signed in to change notification settings - Fork 8
220 lines (190 loc) · 7.37 KB
/
build_test.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
name: Build and Test Workflow
on:
push:
branches:
- v2.x/master
- v3.x/master
pull_request:
types: [opened, synchronize]
workflow_dispatch:
inputs:
PERFORM_RELEASE:
description: 'Perform release?'
required: false
default: false
type: boolean
env:
IMAGE_BASE_DIR: container
jobs:
check-permission:
runs-on: ubuntu-latest
steps:
# this action will fail the whole workflow if permission check fails
- name: check permission
uses: zowe-actions/shared-actions/permission-check@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# Requirement to prevent latest libraries from being used to prevent against package/npm hijacking is in direct conflict
# with requirement to be on the latest version of packages for major release. I guess whoever complains more wins.
#
# validate-package-json:
# needs: check-permission
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
#
# - name: Validate package.json
# uses: zowe-actions/shared-actions/validate-package-json@main
# with:
# excluded-packages: explorer-fvt-utilities
# test on explorer-mvs image
integration-test:
runs-on: ubuntu-latest
# needs: validate-package-json
steps:
- name: '[Prep 1] Checkout'
uses: actions/checkout@v2
- name: '[Prep 2] Cache node modules'
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: |
~/.npm
~/.nvm/.cache
~/.nvm/versions
key: ${{ runner.os }}-build-cache-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-cache-node-modules-
- name: '[Prep 3] Prepare workflow'
uses: zowe-actions/shared-actions/prepare-workflow@main
- name: '[Prep 4] Setup Node'
uses: actions/setup-node@v3
with:
node-version: 18
# - name: '[Prep extra] explorer-mvs exclusive - upgrade npm to v7'
# run: |
# npm install -g npm
# npm -v
- name: '[Setup] NodeJS project setup'
uses: zowe-actions/nodejs-actions/setup@main
with:
package-name: 'org.zowe.explorer-mvs'
- name: '[Test 1] Preparing integration test'
run: |
echo "Preparing server for integration test ..."
./bin/prepare-fvt.sh \
"${CUSTOM_FVT_ZOSMF_HOST:-${{ env.DEFAULT_FVT_ZOSMF_HOST }}}" \
"${CUSTOM_FVT_ZOSMF_PORT:-${{ env.DEFAULT_FVT_ZOSMF_PORT }}}"
sleep 120
- name: "[Test 2] Start integration test"
run: |
export ZOWE_USERNAME=${{ secrets.SSH_MARIST_USERNAMEP }}
export ZOWE_PASSWORD=${{ secrets.SSH_MARIST_PASSWORDP }}
echo "Starting integration test ..."
export SERVER_HOST_NAME=${CUSTOM_FVT_SERVER_HOSTNAME:-${{ env.DEFAULT_FVT_SERVER_HOSTNAME }}}
export SERVER_HTTPS_PORT=7554
export TEST_BROWSER=firefox
npm run test:fvt
# Uncomment the env part to customize test parameters
#env:
# CUSTOM_FVT_ZOSMF_HOST:
# CUSTOM_FVT_ZOSMF_PORT:
# CUSTOM_FVT_SERVER_HOSTNAME:
- name: "[Post Test 1] Print container service logs - discovery-service"
if: always()
run: |
cd .fvt
docker compose logs discovery-service
- name: "[Post Test 2] Print container service logs - gateway-service"
if: always()
run: |
cd .fvt
docker compose logs gateway-service
- name: "[Post Test 3] Print container service logs - explorer-mvs"
if: always()
run: |
cd .fvt
docker compose logs explorer-mvs
regular-build:
runs-on: ubuntu-latest
# needs: validate-package-json
steps:
- name: '[Prep 1] Checkout'
uses: actions/checkout@v2
- name: '[Prep 2] Cache node modules'
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: |
~/.npm
~/.nvm/.cache
~/.nvm/versions
key: ${{ runner.os }}-build-cache-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-cache-node-modules-
- name: '[Prep 3] Setup jFrog CLI'
uses: jfrog/setup-jfrog-cli@v2
env:
JF_ENV_1: ${{ secrets.JF_ARTIFACTORY_TOKEN }}
- name: '[Prep 4] Prepare workflow'
uses: zowe-actions/shared-actions/prepare-workflow@main
- name: '[Prep 5] Setup Node'
uses: actions/setup-node@v3
with:
node-version: 18
# - name: '[Prep extra] explorer-mvs exclusive - upgrade npm to v7'
# run: |
# npm install -g npm
# npm -v
- name: '[Setup] NodeJS project setup'
uses: zowe-actions/nodejs-actions/setup@main
with:
package-name: 'org.zowe.explorer-mvs'
- name: '[Build] Nodejs project build'
run: npm run prod
# - name: '[Test] Nodejs project unit test'
# run: npm run test
# - name: '[Scan 1] Fix code coverage paths'
# working-directory: ./coverage
# run: sed -i 's#'$GITHUB_WORKSPACE'#/github/workspace/#g' lcov.info
- name: '[Scan 2] SonarCloud Scan'
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
sonar.projectVersion: ${{ env.P_VERSION }}
sonar.links.ci: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}'
- name: '[Packaging] Make pax'
uses: zowe-actions/shared-actions/make-pax@main
with:
pax-name: 'explorer-mvs'
pax-options: '-o saveext'
pax-ssh-username: ${{ secrets.SSH_MARIST_USERNAME }}
pax-ssh-password: ${{ secrets.SSH_MARIST_RACF_PASSWORD }}
- name: '[Publish] Publish'
uses: zowe-actions/shared-actions/publish@main
if: success()
with:
artifacts: .pax/explorer-mvs.pax
perform-release: ${{ github.event.inputs.PERFORM_RELEASE }}
- name: 'Call build image workflow'
if: ${{ success() && github.event.inputs.PERFORM_RELEASE == 'true' && env.IS_RELEASE_BRANCH == 'true' }}
uses: zowe-actions/shared-actions/workflow-remote-call-wait@main
with:
github-token: ${{ secrets.ZOWE_ROBOT_TOKEN }}
owner: zowe
repo: explorer-mvs
workflow-filename: explorer-mvs-images.yml
branch-name: ${{ github.ref_name }}
poll-frequency: 1
inputs-json-string: '{"release":"true"}'
# env:
# DEBUG: 'workflow-remote-call-wait'
- name: '[Release 1] Release (if necessary)'
if: ${{ success() && github.event.inputs.PERFORM_RELEASE == 'true' && env.IS_RELEASE_BRANCH == 'true' }}
uses: zowe-actions/shared-actions/release@main
- name: '[Release 2] NPM bump version (if necessary)'
if: ${{ success() && github.event.inputs.PERFORM_RELEASE == 'true' && env.IS_RELEASE_BRANCH == 'true' && env.IS_FORMAL_RELEASE_BRANCH == 'true' && env.PRE_RELEASE_STRING == ''}}
uses: zowe-actions/nodejs-actions/bump-version@main
env:
GITHUB_TOKEN: ${{ secrets.ZOWE_ROBOT_TOKEN }}