Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
| ... | ... |
@@ -10,7 +10,7 @@ pipeline {
|
| 10 | 10 |
parameters {
|
| 11 | 11 |
booleanParam(name: 'unit_validate', defaultValue: true, description: 'amd64 (x86_64) unit tests and vendor check') |
| 12 | 12 |
booleanParam(name: 'amd64', defaultValue: true, description: 'amd64 (x86_64) Build/Test') |
| 13 |
- booleanParam(name: 'aarch64', defaultValue: true, description: 'ARM (aarch64) Build/Test') |
|
| 13 |
+ booleanParam(name: 'arm64', defaultValue: true, description: 'ARM (arm64) Build/Test') |
|
| 14 | 14 |
booleanParam(name: 's390x', defaultValue: true, description: 'IBM Z (s390x) Build/Test') |
| 15 | 15 |
booleanParam(name: 'ppc64le', defaultValue: true, description: 'PowerPC (ppc64le) Build/Test') |
| 16 | 16 |
booleanParam(name: 'windowsRS1', defaultValue: false, description: 'Windows 2016 (RS1) Build/Test') |
| ... | ... |
@@ -757,10 +757,10 @@ pipeline {
|
| 757 | 757 |
} |
| 758 | 758 |
} |
| 759 | 759 |
} |
| 760 |
- stage('aarch64') {
|
|
| 760 |
+ stage('arm64') {
|
|
| 761 | 761 |
when {
|
| 762 | 762 |
beforeAgent true |
| 763 |
- expression { params.aarch64 }
|
|
| 763 |
+ expression { params.arm64 }
|
|
| 764 | 764 |
} |
| 765 | 765 |
agent { label 'aarch64 && packet' }
|
| 766 | 766 |
environment {
|
| ... | ... |
@@ -829,10 +829,10 @@ pipeline {
|
| 829 | 829 |
|
| 830 | 830 |
sh ''' |
| 831 | 831 |
echo "Creating bundles.tar.gz" |
| 832 |
- find bundles -name '*.log' | xargs tar -czf aarch64-bundles.tar.gz |
|
| 832 |
+ find bundles -name '*.log' | xargs tar -czf arm64-bundles.tar.gz |
|
| 833 | 833 |
''' |
| 834 | 834 |
|
| 835 |
- archiveArtifacts artifacts: 'aarch64-bundles.tar.gz' |
|
| 835 |
+ archiveArtifacts artifacts: 'arm64-bundles.tar.gz' |
|
| 836 | 836 |
} |
| 837 | 837 |
cleanup {
|
| 838 | 838 |
sh 'make clean' |