@@ -169,10 +169,10 @@ pipeline {
169
169
commit_short=$(cd deps/k && git rev-parse --short HEAD)
170
170
K_RELEASE="https://github.com/kframework/k/releases/download/nightly-$commit_short"
171
171
curl --fail --location "${K_RELEASE}/kframework_5.0.0_amd64_bionic.deb" --output kframework.deb
172
- curl --fail --location "${K_RELEASE}/kframework-5.0.0-1-x86_64.pkg.tar.xz" --output kframework-git.pkg.tar.xz
172
+ # curl --fail --location "${K_RELEASE}/kframework-5.0.0-1-x86_64.pkg.tar.xz" --output kframework-git.pkg.tar.xz
173
173
'''
174
174
stash name : ' bionic-kframework' , includes : ' kframework.deb'
175
- stash name : ' arch-kframework' , includes : ' kframework-git.pkg.tar.xz'
175
+ // stash name: 'arch-kframework', includes: 'kframework-git.pkg.tar.xz'
176
176
}
177
177
}
178
178
}
@@ -239,7 +239,7 @@ pipeline {
239
239
'''
240
240
}
241
241
}
242
- }
242
+ }/*
243
243
stage('Build Arch Package') {
244
244
agent {
245
245
dockerfile {
@@ -281,7 +281,7 @@ pipeline {
281
281
'''
282
282
}
283
283
}
284
- }
284
+ }*/
285
285
stage(' Upload Release' ) {
286
286
agent {
287
287
dockerfile {
@@ -295,14 +295,14 @@ pipeline {
295
295
dir(" kevm-${ env.KEVM_RELEASE_ID} " ) {
296
296
unstash ' src-kevm'
297
297
unstash ' bionic-kevm'
298
- unstash ' arch-kevm'
298
+ // unstash 'arch-kevm'
299
299
sh '''
300
300
release_tag="v${KEVM_RELEASE_ID}-$(git rev-parse --short HEAD)"
301
301
make release.md KEVM_RELEASE_TAG=${release_tag}
302
302
hub release create \
303
303
--attach "kevm-${KEVM_RELEASE_ID}-src.tar.gz#Source tar.gz" \
304
304
--attach "kevm_${KEVM_RELEASE_ID}_amd64.deb#Ubuntu Bionic (18.04) Package" \
305
- --attach "kevm-${KEVM_RELEASE_ID}/package/kevm-git-${KEVM_RELEASE_ID}-1-x86_64.pkg.tar.xz#Arch Package" \
305
+ # --attach "kevm-${KEVM_RELEASE_ID}/package/kevm-git-${KEVM_RELEASE_ID}-1-x86_64.pkg.tar.xz#Arch Package" \
306
306
--file "release.md" "${release_tag}"
307
307
'''
308
308
}
0 commit comments