Skip to content

Commit

Permalink
Merge remote-tracking branch 'mssonic/internal' into internal-stage
Browse files Browse the repository at this point in the history
  • Loading branch information
sonic-build committed Sep 2, 2022
2 parents a725254 + c350e37 commit e9d7982
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Test Parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Test Parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Test Parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Deploy parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Deploy parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Deploy parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Deploy parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Test Parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Test Parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
# Upgrade parameters
- name: IMAGE_URL
type: string
default: $(IMAGE_BRCM_ABOOT_202205)
default: $(IMAGE_BRCM_ABOOT_INTERNAL)
displayName: "Image URL"

# Test Parameters
Expand Down
5 changes: 3 additions & 2 deletions .azure-pipelines/nightly/templates/nightly_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -332,10 +332,11 @@ stages:
-r \
${{ parameters.TESTBED_SPECIFIC }} \
-e "$PARAMS"
if [[ $? == 65 ]]; then
RUN_TESTS_RC=$?
if [[ $RUN_TESTS_RC == 65 ]]; then
echo "pretest failed. Please check the detailed log."
exit 1
elif [[ $? == 10 ]]; then
elif [[ $RUN_TESTS_RC == 10 ]]; then
echo "Sanity check failed. Please check the detailed log."
exit 1
else
Expand Down

0 comments on commit e9d7982

Please sign in to comment.