forked from securefederatedai/openfl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
191 lines (185 loc) · 9.48 KB
/
Jenkinsfile
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
def snykData = [
'openfl-docker': 'openfl-docker/Dockerfile.base',
'openfl-docker-gramine': 'openfl-gramine/Dockerfile.gramine',
'openfl': 'setup.py',
'openfl-workspace_tf_2dunet': 'openfl-workspace/tf_2dunet/requirements.txt',
'openfl-workspace_torch_cnn_mnist_straggler_check': 'openfl-workspace/torch_cnn_mnist_straggler_check/requirements.txt',
// CN-14619 snyk test CLI does not support -f in requirements.txt file
// 'openfl-workspace_torch_cnn_histology': 'openfl-workspace/torch_cnn_histology/requirements.txt',
'openfl-workspace_torch_cnn_histology_src': 'openfl-workspace/torch_cnn_histology/src/requirements.txt',
'openfl-workspace_keras_nlp': 'openfl-workspace/keras_nlp/requirements.txt',
'openfl-workspace_torch_cnn_mnist': 'openfl-workspace/torch_cnn_mnist/requirements.txt',
'openfl-workspace_keras_nlp_gramine_ready': 'openfl-workspace/keras_nlp_gramine_ready/requirements.txt',
'openfl-workspace_torch_unet_kvasir': 'openfl-workspace/torch_unet_kvasir/requirements.txt',
'openfl-workspace_tf_cnn_histology': 'openfl-workspace/tf_cnn_histology/requirements.txt',
'openfl-workspace_torch_cnn_histology_gramine_ready': 'openfl-workspace/torch_cnn_histology_gramine_ready/requirements.txt',
'openfl-workspace_tf_3dunet_brats': 'openfl-workspace/tf_3dunet_brats/requirements.txt',
'openfl-workspace_keras_cnn_with_compression': 'openfl-workspace/keras_cnn_with_compression/requirements.txt',
'openfl-workspace_keras_cnn_mnist': 'openfl-workspace/keras_cnn_mnist/requirements.txt',
'openfl-workspace_torch_unet_kvasir_gramine_ready': 'openfl-workspace/torch_unet_kvasir_gramine_ready/requirements.txt',
'openfl-tutorials_interactive_api_pytorch_medmnist_2d_envoy': 'openfl-tutorials/interactive_api/PyTorch_MedMNIST_2D/envoy/requirements.txt',
'openfl-tutorials_interactive_api_pytorch_dogscats_vit_workspace': 'openfl-tutorials/interactive_api/PyTorch_DogsCats_ViT/workspace/requirements.txt',
'openfl-tutorials_interactive_api_pytorch_histology_envoy': 'openfl-tutorials/interactive_api/PyTorch_Histology/envoy/requirements.txt',
'openfl-tutorials_interactive_api_mxnet_landmarks_workspace': 'openfl-tutorials/interactive_api/MXNet_landmarks/workspace/requirements.txt',
'openfl-tutorials_interactive_api_pytorch_histology_fedcurv_envoy': 'openfl-tutorials/interactive_api/PyTorch_Histology_FedCurv/envoy/requirements.txt',
'openfl-tutorials_interactive_api_tensorflow_word_prediction_workspace': 'openfl-tutorials/interactive_api/Tensorflow_Word_Prediction/workspace/requirements.txt',
'openfl-tutorials_interactive_api_jax_linear_regression_envoy': 'openfl-tutorials/interactive_api/jax_linear_regression/envoy/requirements.txt',
'openfl-tutorials_interactive_api_pytorch_medmnist_3d_envoy': 'openfl-tutorials/interactive_api/PyTorch_MedMNIST_3D/envoy/requirements.txt',
'openfl-tutorials_interactive_api_numpy_linear_regression_workspace': 'openfl-tutorials/interactive_api/numpy_linear_regression/workspace/requirements.txt',
'openfl-tutorials_interactive_api_numpy_linear_regression_envoy': 'openfl-tutorials/interactive_api/numpy_linear_regression/envoy/requirements.txt',
'openfl-tutorials_interactive_api_pytorch_market_re-id_workspace': 'openfl-tutorials/interactive_api/PyTorch_Market_Re-ID/workspace/requirements.txt',
'openfl-tutorials_interactive_api_pytorch_market_re-id_envoy': 'openfl-tutorials/interactive_api/PyTorch_Market_Re-ID/envoy/requirements.txt',
'openfl-tutorials_interactive_api_pytorch_tinyimagenet_workspace': 'openfl-tutorials/interactive_api/PyTorch_TinyImageNet/workspace/requirements.txt',
'openfl-tutorials_interactive_api_pytorch_tinyimagenet_envoy': 'openfl-tutorials/interactive_api/PyTorch_TinyImageNet/envoy/requirements.txt'
]
pipeline {
agent {
label 'rbhe'
}
options {
disableConcurrentBuilds()
}
triggers {
cron('TZ=US/Arizona\nH 20 * * 0-4')
}
stages {
stage('Code Scan Pipeline') {
when {
anyOf {
allOf {
expression { env.GIT_BRANCH == 'develop' }
triggeredBy 'TimerTrigger'
}
triggeredBy 'UserIdCause'
triggeredBy 'BranchIndexingCause'
}
}
stages {
stage('Build Docker Images') {
environment {
DOCKER_BUILD_ARGS = '--build-arg http_proxy --build-arg https_proxy --no-cache'
}
steps {
sh '''
docker image build ${DOCKER_BUILD_ARGS} -t openfl-docker:latest . -f openfl-docker/Dockerfile.base
DOCKER_BUILDKIT=1 docker image build ${DOCKER_BUILD_ARGS} -t openfl-docker-gramine:latest . -f openfl-gramine/Dockerfile.gramine
docker images | { grep openfl || true; }
'''
}
}
stage('Prep Code Scan') {
steps {
script {
// prep environment variables for Snyk Scan
env.SNYK_PROJECT_NAME = snykData.collect { project, manifest -> project }.join(',')
env.SNYK_MANIFEST_FILE = snykData.collect { project, manifest -> manifest }.join(',')
env.SNYK_DOCKER_IMAGE = snykData.collect { project, manifest -> manifest.contains('Dockerfile') ? project : '' }.join(',')
sh 'env | { grep SNYK || true; }'
}
}
}
stage('Code Scan') {
environment {
PROJECT_NAME = 'OpenFL-Main'
SCANNERS = 'snyk,checkmarx,protex,bandit,virus'
SNYK_ALLOW_LONG_PROJECT_NAME = true
SNYK_USE_MULTI_PROC = true
SNYK_DEBUG = true
SNYK_PYTHON_VERSION = '3.8'
BANDIT_SOURCE_PATH = 'openfl/ openfl-workspace/ openfl-tutorials/'
BANDIT_SEVERITY_LEVEL = 'high'
VIRUS_SCAN_DIR = '.'
PUBLISH_TO_ARTIFACTORY = false
}
steps {
rbheStaticCodeScan()
}
}
}
}
stage('Publish PyPi') {
// only publish pypi package when these conditions are true:
// * commit is a release pypi publish commit
// * branch is a jenkins release branch
// NOTE: ensure version in setup.py is updated accordingly
when {
allOf {
expression { env.GIT_BRANCH ==~ /(?i)(jenkins-v\d+.\d+)/ }
expression { common.isPyPiPublishCommit() }
not {
triggeredBy 'TimerTrigger'
}
}
}
stages {
stage('Build Package') {
agent {
docker {
image 'python:3.8'
}
}
steps {
sh 'scripts/build_wheel.sh'
}
}
stage('Publish Package') {
steps {
pypiPublish()
}
}
}
}
stage('Publish Docker Hub') {
// only publish docker image when these conditions are true:
// * commit is a release docker publish commit
// * the docker image:tag is not already published
// * branch is a jenkins release branch
// NOTE: ensure image tag is updated accordingly
when {
allOf {
expression { env.GIT_BRANCH ==~ /(?i)(jenkins-v\d+.\d+)/ }
expression { isDockerPublishCommit() }
expression { ! isDockerImagePublished('intel/openfl:1.5') }
not {
triggeredBy 'TimerTrigger'
}
}
}
steps {
rbheDocker(
image: 'intel/openfl',
dockerfile: 'openfl-docker/Dockerfile.base',
latest: true,
tags: ['1.5'],
pushOn: /^(?:jenkins-v\d+.\d+)$/,
scan: false,
registry: [[
url: 'docker.io',
credentialId: rbhe.credentials.intelDockerHub
]]
)
}
}
}
post {
always {
publishArtifacts()
cleanWs()
}
}
}
def isDockerPublishCommit() {
def publish = common.isMatchingCommit(/(?s)^release\(.*docker.*\):.*publish image.*$/)
echo "[isDockerPublishCommit]: publish Docker image: ${publish}"
publish
}
def isDockerImagePublished(dockerImage) {
// temporary method until this feature is made available within the rbheDocker function
def status
docker.withRegistry('https://docker.io', rbhe.credentials.intelDockerHub) {
status = sh(script:"docker pull ${dockerImage}", returnStatus: true)
}
def published = status == 0
echo "[isDockerImagePublished]: ${dockerImage} already published: ${published}"
published
}