blob: 9478b4f8f4162c621ef4ebfdb16fef6fef1a278e [file] [log] [blame]
Fathi Boudra11b4a542015-10-26 10:33:25 +02001- job:
2 name: jdk8-archive-test-scripts
3 project-type: freestyle
4 defaults: global
5 description: |
6 * This job is no longer necessary as these directories are held at git.linaro.org.
Fathi Boudra11b4a542015-10-26 10:33:25 +02007 properties:
8 - authorization:
9 anonymous:
10 - job-read
11 - job-extended-read
Stuart Monteith91aa5e02016-08-10 13:28:54 +010012 - build-discarder:
13 days-to-keep: 30
14 num-to-keep: 10
15 artifact-num-to-keep: 5
Riku Voipiob7c49aa2020-12-01 15:15:24 +020016 disabled: true
Stuart Monteith1f5aa992018-10-03 17:05:22 +010017 node: j12-qrep-01
Fathi Boudra1d26cf02015-11-06 12:49:47 +020018 display-name: 'OpenJDK 8 - Archive OpenJDK 8 test scripts'
Fathi Boudra11b4a542015-10-26 10:33:25 +020019 wrappers:
20 - timestamps
21 builders:
22 - shell: |
23 #!/bin/bash
24
25 set -exu
26
27 rm -rf out
28 mkdir out
29 cd ~openjdk-testing
30 tar --exclude=.git -acvf ${WORKSPACE}/out/specjbb-test-scripts.tar.gz specjbb-test-scripts
31 tar --exclude=.git --exclude=jdk8 -acvf ${WORKSPACE}/out/openjdk-test-scripts.tar.gz openjdk-test-scripts
32 tar --exclude=.git -acvf ${WORKSPACE}/out/hadoop-test-scripts.tar.gz hadoop-test-scripts
33 publishers:
34 - archive:
35 artifacts: 'out/*.tar.gz'