8000 libgit2sharp/appveyor.yml at master · kevinkuszyk/libgit2sharp · GitHub
[go: up one dir, main page]

Skip to content
{"payload":{"allShortcutsEnabled":false,"fileTree":{"":{"items":[{"name":".nuget","path":".nuget","contentType":"directory"},{"name":"CI","path":"CI","contentType":"directory"},{"name":"Lib","path":"Lib","contentType":"directory"},{"name":"LibGit2Sharp.Tests","path":"LibGit2Sharp.Tests","contentType":"directory"},{"name":"LibGit2Sharp","path":"LibGit2Sharp","contentType":"directory"},{"name":"nuget.package","path":"nuget.package","contentType":"directory"},{"name":".editorconfig","path":".editorconfig","contentType":"file"},{"name":".gitattributes","path":".gitattributes","contentType":"file"},{"name":".gitignore","path":".gitignore","contentType":"file"},{"name":".mailmap","path":".mailmap","contentType":"file"},{"name":".travis.yml","path":".travis.yml","contentType":"file"},{"name":"CHANGES.md","path":"CHANGES.md","contentType":"file"},{"name":"CONTRIBUTING.md","path":"CONTRIBUTING.md","contentType":"file"},{"name":"LICENSE.md","path":"LICENSE.md","contentType":"file"},{"name":"LibGit2Sharp.sln","path":"LibGit2Sharp.sln","contentType":"file"},{"name":"LibGit2Sharp.sln.DotSettings","path":"LibGit2Sharp.sln.DotSettings","contentType":"file"},{"name":"LibGit2Sharp.v2.ncrunchsolution","path":"LibGit2Sharp.v2.ncrunchsolution","contentType":"file"},{"name":"README.md","path":"README.md","contentType":"file"},{"name":"acknowledgments.md","path":"acknowledgments.md","contentType":"file"},{"name":"appveyor.yml","path":"appveyor.yml","contentType":"file"},{"name":"build.libgit2sharp.cmd","path":"build.libgit2sharp.cmd","contentType":"file"},{"name":"build.libgit2sharp.sh","path":"build.libgit2sharp.sh","contentType":"file"},{"name":"square-logo.png","path":"square-logo.png","contentType":"file"}],"totalCount":23}},"fileTreeProcessingTime":8.670366000000001,"foldersToFetch":[],"incompleteFileTree":false,"repo":{"id":82542521,"defaultBranch":"master","name":"libgit2sharp","ownerLogin":"kevinkuszyk","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2017-02-20T09:53:40.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/2734580?v=4","public":true,"private":false,"isOrgOwned":false},"codeLineWrapEnabled":false,"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"master","listCacheKey":"v0:1621353472.3168042","canEdit":false,"refType":"branch","currentOid":"802aeb431274ebf86ae2245571da565b92b8c45b"},"path":"appveyor.yml","currentUser":null,"blob":{"rawLines":["version: '{build}'","","branches:"," only:"," - master"," - /^maint.*/","","skip_tags: true","","clone_folder: C:\\projects\\libgit2sharp","","environment:"," coveralls_token:"," secure: ixIsBslo9NheDb5lJknF58EYdgvZ0r3/L0ecRiXjfXmjHBLvoSU6/ZRwaMM+BAlG"," coverity_token:"," secure: nuzUT+HecXGIi3KaPd/1hgFEZJan/j6+oNbPV75JKjk="," coverity_email:"," secure: eGVilNg1Yuq+Xj+SW8r3WCtjnzhoDV0sNJkma4NRq7A="," version : 0.24.0"," matrix:"," - xunit_runner: xunit.console.x86.exe"," Arch: 32"," publish_on_success: False"," - xunit_runner: xunit.console.exe"," Arch: 64"," publish_on_success: True","","matrix:"," fast_finish: true","","install:","- ps: |"," Write-Host \"Commit being built = \" -NoNewLine"," Write-Host $Env:APPVEYOR_REPO_COMMIT -ForegroundColor \"Green\""," Write-Host \"Current build version = \" -NoNewLine"," Write-Host $Env:VERSION -ForegroundColor \"Green\""," Write-Host \"Target branch = \" -NoNewLine"," Write-Host $Env:APPVEYOR_REPO_BRANCH -ForegroundColor \"Green\""," Write-Host \"Is a Pull Request = \" -NoNewLine"," Write-Host $($Env:APPVEYOR_PULL_REQUEST_NUMBER -ne $null) -ForegroundColor \"Green\"",""," $CommitDate = [DateTime]::Parse($Env:APPVEYOR_REPO_COMMIT_TIMESTAMP)"," $BuildDate = $CommitDate.ToUniversalTime().ToString(\"yyyyMMddHHmmss\")"," Write-Host \"Merge commit UTC timestamp = \" -NoNewLine"," Write-Host $BuildDate -ForegroundColor \"Green\"",""," $VersionSuffix = \"\""," If ($Env:APPVEYOR_REPO_BRANCH -ne \"master\")"," {"," $VersionSuffix = \"-pre$BuildDate\""," }"," $Version = \"$($Env:VERSION)$($VersionSuffix)\""," $Env:ASSEMBLY_INFORMATIONAL_VERSION = $Version"," Write-Host \"Assembly informational version = \" -NoNewLine"," Write-Host $Env:ASSEMBLY_INFORMATIONAL_VERSION -ForegroundColor \"Green\"",""," $Env:SHOULD_RUN_COVERITY_ANALYSIS = $($Env:APPVEYOR_SCHEDULED_BUILD -eq $True)"," Write-Host \"Should run Coverity analysis = \" -NoNewLine"," Write-Host $Env:SHOULD_RUN_COVERITY_ANALYSIS -ForegroundColor \"Green\"",""," $Env:SHOULD_PACKAGE_NUGET_ARTIFACT = -not $Env:APPVEYOR_PULL_REQUEST_NUMBER -and -not $Env:APPVEYOR_SCHEDULED_BUILD"," Write-Host \"Should package Nuget artifact = \" -NoNewLine"," Write-Host $Env:SHOULD_PACKAGE_NUGET_ARTIFACT -ForegroundColor \"Green\"",""," $Env:SHOULD_RUN_COVERALLS = $($Env:APPVEYOR_SCHEDULED_BUILD -eq $True)"," Write-Host \"Should run Coveralls = \" -NoNewLine"," Write-Host $Env:SHOULD_RUN_COVERALLS -ForegroundColor \"Green\"",""," Write-Host \"Should publish on success = \" -NoNewLine"," Write-Host $Env:publish_on_success -ForegroundColor \"Green\"",""," If ($Env:SHOULD_PACKAGE_NUGET_ARTIFACT -eq $True)"," {"," cinst sourcelink -y"," }",""," If ($Env:SHOULD_RUN_COVERALLS -eq $True)"," {"," nuget install OpenCover -Version 4.6.166 -ExcludeVersion -OutputDirectory .\\packages"," nuget install coveralls.net -Version 0.6.0 -ExcludeVersion -OutputDirectory .\\packages"," }",""," If ($Env:SHOULD_RUN_COVERITY_ANALYSIS -eq $True)"," {"," cinst curl -y"," }","","assembly_info:"," patch: true"," file: LibGit2Sharp\\Properties\\AssemblyInfo.cs"," assembly_version: '$(VERSION)'"," assembly_file_version: '$(VERSION)'"," assembly_informational_version: '$(ASSEMBLY_INFORMATIONAL_VERSION)'","","cache:"," - packages","","before_build:","- ps: nuget restore \"$Env:APPVEYOR_BUILD_FOLDER\\LibGit2Sharp.sln\"","","build_script:","- ps: |"," \u0026 cov-build.exe --dir cov-int msbuild \"$Env:APPVEYOR_BUILD_FOLDER\\LibGit2Sharp.sln\" `"," /verbosity:normal `"," /p:Configuration=Release `"," /logger:\"C:\\Program Files\\AppVeyor\\BuildAgent\\Appveyor.MSBuildLogger.dll\" `"," /property:ExtraDefine=\"LEAKS_IDENTIFYING\"","","test_script:","- ps: |"," If ($Env:SHOULD_RUN_COVERALLS -eq $True -and $Env:publish_on_success -eq $True)"," {"," .\\packages\\OpenCover\\tools\\OpenCover.Console.exe `"," -register:user `"," \"-target:\"\"$Env:APPVEYOR_BUILD_FOLDER\\packages\\xunit.runner.console.2.0.0\\tools\\$Env:xunit_runner\"\"\" `"," \"-targetargs:\"\"$Env:APPVEYOR_BUILD_FOLDER\\LibGit2Sharp.Tests\\bin\\Release\\LibGit2Sharp.Tests.dll\"\" -noshadow\" `"," \"-filter:+[LibGit2Sharp]* -[LibGit2Sharp.Tests]*\" `"," -hideskipped:All `"," -output:opencoverCoverage.xml"," }"," ElseIf ($Env:SHOULD_RUN_COVERITY_ANALYSIS -eq $False)"," {"," \u0026 \"$Env:APPVEYOR_BUILD_FOLDER\\packages\\xunit.runner.console.2.0.0\\tools\\$Env:xunit_runner\" `"," \"$Env:APPVEYOR_BUILD_FOLDER\\LibGit2Sharp.Tests\\bin\\Release\\LibGit2Sharp.Tests.dll\" -noshadow"," }","","after_test:","- ps: |"," If ($Env:SHOULD_PACKAGE_NUGET_ARTIFACT -eq $True -and $Env:publish_on_success -eq $True)"," {"," \u0026 \"$Env:APPVEYOR_BUILD_FOLDER\\nuget.package\\BuildNugetPackage.ps1\" `"," -commitSha \"$Env:APPVEYOR_REPO_COMMIT\" `"," -postBuild { sourcelink index `"," -pr LibGit2Sharp.csproj `"," -pp Configuration Release `"," -nf Core\\NativeDllName.cs `"," -nf Core\\UniqueIdentifier.cs `"," -nf Properties\\AssemblyInfo.cs `"," -r .. `"," -u 'https://raw.githubusercontent.com/libgit2/libgit2sharp/{0}/%var2%' }",""," Add-Type -Path \"$Env:APPVEYOR_BUILD_FOLDER\\LibGit2Sharp\\bin\\Release\\LibGit2Sharp.dll\""," Write-Host \"LibGit2Sharp version = $([LibGit2Sharp.GlobalSettings]::Version)\" -ForegroundColor \"Magenta\"",""," Get-ChildItem \"$Env:APPVEYOR_BUILD_FOLDER\\LibGit2sharp\\*.nupkg\" | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }"," }",""," If ($Env:SHOULD_RUN_COVERALLS -eq $True -and $Env:publish_on_success -eq $True)"," {"," Write-Host \"Uploading code coverage result...\" -ForegroundColor \"Green\"",""," .\\packages\\coveralls.net\\tools\\csmacnz.Coveralls.exe `"," --opencover -i opencoverCoverage.xml `"," --repoToken $Env:coveralls_token `"," --useRelativePaths `"," --basePath \"$Env:APPVEYOR_BUILD_FOLDER\\\"`"," }",""," If ($Env:SHOULD_RUN_COVERITY_ANALYSIS -eq $True -and $Env:publish_on_success -eq $True)"," {"," 7z a \"$Env:APPVEYOR_BUILD_FOLDER\\$Env:APPVEYOR_PROJECT_NAME.zip\" \"$Env:APPVEYOR_BUILD_FOLDER\\cov-int\\\"",""," # cf. http://stackoverflow.com/a/25045154/335418"," Remove-item alias:curl",""," Write-Host \"Uploading Coverity analysis result...\" -ForegroundColor \"Green\"",""," curl --silent --show-error `"," --output curl-out.txt `"," --form token=\"$Env:coverity_token\" `"," --form email=\"$Env:coverity_email\" `"," --form \"file=@$Env:APPVEYOR_BUILD_FOLDER\\$Env:APPVEYOR_PROJECT_NAME.zip\" `"," --form version=\"$Env:APPVEYOR_REPO_COMMIT\" `"," --form description=\"CI server scheduled build.\" `"," https://scan.coverity.com/builds?project=libgit2%2Flibgit2sharp",""," cat .\\curl-out.txt"," }","","notifications:","- provider: Email"," to:"," - emeric.fermas@gmail.com"," on_build_status_changed: true"],"stylingDirectives":null,"colorizedLines":null,"csv":null,"csvError":null,"dependabotInfo":{"showConfigurationBanner":false,"configFilePath":null,"networkDependabotPath":"/kevinkuszyk/libgit2sharp/network/updates","dismissConfigurationNoticePath":"/settings/dismiss-notice/dependabot_configuration_notice","configurationNoticeDismissed":null},"displayName":"appveyor.yml","displayUrl":"https://github.com/kevinkuszyk/libgit2sharp/blob/master/appveyor.yml?raw=true","headerInfo":{"blobSize":"6.58 KB","deleteTooltip":"You must be signed in to make or propose changes","editTooltip":"You must be signed in to make or propose changes","ghDesktopPath":"https://desktop.github.com","isGitLfs":false,"onBranch":true,"shortPath":"0b72f19","siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fkevinkuszyk%2Flibgit2sharp%2Fblob%2Fmaster%2Fappveyor.yml","isCSV":false,"isRichtext":false,"toc":null,"lineInfo":{"truncatedLoc":"184","truncatedSloc":"153"},"mode":"file"},"image":false,"isCodeownersFile":null,"isPlain":false,"isValidLegacyIssueTemplate":false,"issueTemplate":null,"discussionTemplate":null,"language":"YAML","languageID":407,"large":false,"planSupportInfo":{"repoIsFork":null,"repoOwnedByCurrentUser":null,"requestFullPath":"/kevinkuszyk/libgit2sharp/blob/master/appveyor.yml","showFreeOrgGatedFeatureMessage":null,"showPlanSupportBanner":null,"upgradeDataAttributes":null,"upgradePath":null},"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_dockerfile","releasePath":"/kevinkuszyk/libgit2sharp/releases/new?marketplace=true","showPublishActionBanner":false},"rawBlobUrl":"https://github.com/kevinkuszyk/libgit2sharp/raw/refs/heads/master/appveyor.yml","renderImageOrRaw":false,"richText":null,"renderedFileInfo":null,"shortPath":null,"symbolsEnabled":true,"tabSize":8,"topBannersInfo":{"overridingGlobalFundingFile":false,"globalPreferredFundingPath":null,"showInvalidCitationWarning":false,"citationHelpUrl":"https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files","actionsOnboardingTip":null},"truncated":false,"viewable":true,"workflowRedirectUrl":null,"symbols":{"timed_out":false,"not_analyzed":true,"symbols":[]}},"copilotInfo":null,"copilotAccessAllowed":false,"modelsAccessAllowed":false,"modelsRepoIntegrationEnabled":false,"csrf_tokens":{"/kevinkuszyk/libgit2sharp/branches":{"post":"pQ84du-tq-xtVBvQ3pgP25W_4sM-phaacoAoDfTIeMjmOYI_sSQHAA_YlAjDn-uabSNcd0CUZ5w29shV2JMfgA"},"/repos/preferences":{"post":"42ZAAzFXVtyrEgQ_dqFTwmVPTZHrw7JJ3wHO67HNXGfXHTKrEruZbZQnUoH0diLMoFTkFyfCKOqE07HDpVBLFA"}}},"title":"libgit2sharp/appveyor.yml at master · kevinkuszyk/libgit2sharp","appPayload":{"helpUrl":"https://docs.github.com","findFileWorkerPath":"/assets-cdn/worker/find-file-worker-7d7eb7c71814.js","findInFileWorkerPath":"/assets-cdn/worker/find-in-file-worker-1ae9fa256942.js","githubDevUrl":null,"enabled_features":{"code_nav_ui_events":false,"react_blob_overlay":false,"accessible_code_button":true,"github_models_repo_integration":false}}}
0