Delete buile-mbedtls-amis.yaml
The new AMI build job has been migrated to production
https://git.trustedfirmware.org/ci/tf-ci-scripts.git/tree/build-aws-amis.yaml
Signed-off-by: Arthur She <arthur.she@linaro.org>
Change-Id: I95a316b0193cbaa38f1a40987357f6a399271f53
diff --git a/buile-mbedtls-amis.yaml b/buile-mbedtls-amis.yaml
deleted file mode 100644
index 1b558b9..0000000
--- a/buile-mbedtls-amis.yaml
+++ /dev/null
@@ -1,59 +0,0 @@
-- job:
- name: buile-mbedtls-amis
- project-type: freestyle
- defaults: global
- properties:
- - authorization:
- anonymous:
- - job-read
- - job-extended-read
- - build-discarder:
- days-to-keep: 90
- num-to-keep: 200
- disabled: false
- node: build-amd64-private
- concurrent: false
- display-name: 'build AMIs for mbedtls'
- wrappers:
- - timestamps
- parameters:
- - bool:
- name: BUILD_UBUNTU_AMI
- default: true
- description: Build Ubuntu AMI
- - bool:
- name: BUILD_FREEBSD_AMI
- default: false
- description: Build FreeBSD AMI
- - bool:
- name: BUILD_CUSTOM_AMI
- default: false
- description: Build Custom AMI
- builders:
- - shell: |
- #!/bin/bash
-
- export PACKER_LOG=1
-
- AMI=""
- [ ${BUILD_UBUNTU_AMI} == "true" ] && AMI="${AMI} ubuntu"
- [ ${BUILD_FREEBSD_AMI} == "true" ] && AMI="${AMI} freebsd"
- [ ${BUILD_CUSTOM_AMI} == "true" ] && AMI="${AMI} custom"
-
- [ -z "${AMI}" ] && echo "Build Nothing.." && exit
-
- rm -rf mbedtls-amis
- git clone https://git.trustedfirmware.org/next/ci/mbedtls-amis.git
- cd mbedtls-amis
-
- for os in ${AMI}
- do
- echo -e "\nBuild ${os} AMI"
- [ ! -f "packer_${os}.json" ] && echo -e "\nERROR: Can not find packer_${os}.json" && exit -1
- # Dump packer_config.json to job log
- cat packer_${os}.json
- packer build packer_${os}.json
- done
- publishers:
- - email:
- recipients: linaro-infrastructure-errors@lists.linaro.org,arthur.she@linaro.org