Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing in-proc pipeline #4250

Open
wants to merge 5 commits into
base: in-proc
Choose a base branch
from
Open

Conversation

aishwaryabh
Copy link
Contributor

@aishwaryabh aishwaryabh commented Feb 3, 2025

Issue describing the changes in this PR

The in-proc builds for the core tools pipeline breaks, due to the architecture of the build not being specified like how it is for the main branch. This PR also addresses the CVE for DotnetZip which will be addressed by Brett's PR here

Pull request checklist

  • My changes do not require documentation changes
    • Otherwise: Documentation issue linked to PR
  • My changes do not need to be backported to a previous version
    • Otherwise: Backport tracked by issue/PR #issue_or_pr
  • I have added all required tests (Unit tests, E2E tests)

@aishwaryabh aishwaryabh requested a review from a team as a code owner February 3, 2025 19:42
@aishwaryabh aishwaryabh changed the title [draft] Fixing in-proc pipeline Fixing in-proc pipeline Feb 3, 2025
@aishwaryabh aishwaryabh requested a review from a team as a code owner February 4, 2025 20:15
@@ -59,7 +59,7 @@ if (-Not $hostVersion) {

function getHostFileContent([string]$filePath) {
$uri = "https://raw.githubusercontent.com/Azure/azure-functions-host/v$hostVersion/$filePath"
return removeBomIfExists((Invoke-WebRequest -Uri $uri -MaximumRetryCount 5 -RetryIntervalSec 2).Content)
return removeBomIfExists((Invoke-WebRequest -Uri $uri).Content)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Curious to know why are we changing this? Main branch still has this -

return removeBomIfExists((Invoke-WebRequest -Uri $uri -MaximumRetryCount 5 -RetryIntervalSec 2).Content)

@@ -96,9 +96,6 @@ jobs:
TELEMETRY_INSTRUMENTATION_KEY: $(TELEMETRY_INSTRUMENTATION_KEY)
IntegrationBuildNumber: $(INTEGRATIONBUILDNUMBER)
displayName: 'Executing build script'
- pwsh: |
.\check-vulnerabilities.ps1
displayName: "Check for security vulnerabilities"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we planning to add this back later on?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants