Change azure pipeline commands for marvell

make configure is changed as below for 'marvell-arm64' and 'marvell-armhf'.
arm64 - make configure PLATFORM=marvell PLATFORM_ARCH=arm64
armhf - make configure PLATFORM=marvell PLATFORM_ARCH=armhf

Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com>
This commit is contained in:
Pavan Naregundi 2024-02-21 04:53:31 +00:00
parent e3166f005e
commit cb9c724185
4 changed files with 7 additions and 1 deletions

View File

@ -90,6 +90,7 @@ jobs:
pool: sonicbld-armhf pool: sonicbld-armhf
timeoutInMinutes: 2880 timeoutInMinutes: 2880
variables: variables:
PLATFORM: marvell
PLATFORM_ARCH: armhf PLATFORM_ARCH: armhf
- name: marvell-arm64 - name: marvell-arm64
@ -97,6 +98,7 @@ jobs:
pool: sonicbld-arm64 pool: sonicbld-arm64
timeoutInMinutes: 2880 timeoutInMinutes: 2880
variables: variables:
PLATFORM: marvell
PLATFORM_ARCH: arm64 PLATFORM_ARCH: arm64
- name: marvell - name: marvell

View File

@ -49,7 +49,8 @@ jobs:
sudo modprobe overlay sudo modprobe overlay
sudo apt-get install -y acl sudo apt-get install -y acl
sudo bash -c "echo 1 > /proc/sys/vm/compact_memory" sudo bash -c "echo 1 > /proc/sys/vm/compact_memory"
ENABLE_DOCKER_BASE_PULL=y make PLATFORM=$(PLATFORM_AZP) PLATFORM_ARCH=$(PLATFORM_ARCH) $(BUILD_OPTIONS) configure [ -z "$PLATFORM" ] && PLATFORM=$(PLATFORM_AZP)
ENABLE_DOCKER_BASE_PULL=y make PLATFORM=$PLATFORM PLATFORM_ARCH=$(PLATFORM_ARCH) $(BUILD_OPTIONS) configure
displayName: 'Make configure' displayName: 'Make configure'
postSteps: postSteps:
- script: | - script: |

View File

@ -49,4 +49,5 @@ stages:
pool: sonicbld-armhf pool: sonicbld-armhf
timeoutInMinutes: 1200 timeoutInMinutes: 1200
variables: variables:
PLATFORM: marvell
PLATFORM_ARCH: armhf PLATFORM_ARCH: armhf

View File

@ -79,11 +79,13 @@ stages:
- name: marvell-arm64 - name: marvell-arm64
pool: sonicbld-arm64 pool: sonicbld-arm64
variables: variables:
PLATFORM: marvell
PLATFORM_ARCH: arm64 PLATFORM_ARCH: arm64
- name: marvell-armhf - name: marvell-armhf
pool: sonicbld-armhf pool: sonicbld-armhf
timeoutInMinutes: 1200 timeoutInMinutes: 1200
variables: variables:
PLATFORM: marvell
PLATFORM_ARCH: armhf PLATFORM_ARCH: armhf
INCLUDE_RESTAPI: y INCLUDE_RESTAPI: y