diff --git a/.azure-pipelines/azure-pipelines-build.yml b/.azure-pipelines/azure-pipelines-build.yml index df51700c4f..e0a0400f85 100644 --- a/.azure-pipelines/azure-pipelines-build.yml +++ b/.azure-pipelines/azure-pipelines-build.yml @@ -35,7 +35,6 @@ jobs: dbg_image: no asan_image: no swi_image: no - raw_image: no docker_syncd_rpc_image: no syncd_rpc_image: no platform_rpc: no @@ -62,7 +61,6 @@ jobs: variables: dbg_image: yes swi_image: yes - raw_image: yes docker_syncd_rpc_image: yes platform_rpc: brcm @@ -149,9 +147,6 @@ jobs: if [ $(swi_image) == yes ]; then make $BUILD_OPTIONS ENABLE_IMAGE_SIGNATURE=y target/sonic-aboot-$(GROUP_NAME).swi fi - if [ $(raw_image) == yes ]; then - make $BUILD_OPTIONS target/sonic-$(GROUP_NAME).raw - fi if [ $(docker_syncd_rpc_image) == yes ]; then # workaround for issue in rules/sairedis.dep, git ls-files will list un-exist files for cache make $BUILD_OPTIONS ENABLE_SYNCD_RPC=y target/docker-syncd-$(platform_rpc)-rpc.gz diff --git a/.azure-pipelines/build-template.yml b/.azure-pipelines/build-template.yml index 43db5720a3..355cfc7aaf 100644 --- a/.azure-pipelines/build-template.yml +++ b/.azure-pipelines/build-template.yml @@ -101,9 +101,6 @@ jobs: if [ ${{ parameters.swi_image }} == true ]; then make USERNAME=admin $CACHE_OPTIONS SONIC_BUILD_JOBS=$(nproc) ENABLE_IMAGE_SIGNATURE=y target/sonic-aboot-${{ parameters.platform }}.swi fi - if [ ${{ parameters.raw_image }} == true ]; then - make USERNAME=admin $CACHE_OPTIONS SONIC_BUILD_JOBS=$(nproc) target/sonic-${{ parameters.platform }}.raw - fi if [ ${{ parameters.sync_rpc_image }} == true ]; then make USERNAME=admin $CACHE_OPTIONS SONIC_BUILD_JOBS=$(nproc) ENABLE_SYNCD_RPC=y target/docker-syncd-${{ parameters.platform_short }}-rpc.gz # workaround for issue in rules/sairedis.dep, git ls-files will list un-exist files for cache diff --git a/.azure-pipelines/official-build-cache.yml b/.azure-pipelines/official-build-cache.yml index 99b36dbdff..c4261a7209 100644 --- a/.azure-pipelines/official-build-cache.yml +++ b/.azure-pipelines/official-build-cache.yml @@ -39,7 +39,6 @@ stages: - name: broadcom variables: swi_image: yes - raw_image: yes docker_syncd_rpc_image: yes platform_rpc: brcm - name: mellanox