6b7e6b44f1
gh-pages / build (push) Waiting to run
Python Build and Type Check / python-ci (ubuntu-latest, 3.11) (push) Waiting to run
Python Build and Type Check / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Build and Type Check / python-ci (windows-latest, 3.11) (push) Waiting to run
Python Build and Type Check / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Integration Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Integration Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Notebook Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Notebook Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Publish (pypi) / Upload release to PyPI (push) Waiting to run
Python Smoke Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Smoke Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Unit Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Unit Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Spellcheck / spellcheck (push) Waiting to run
41 lines
954 B
YAML
41 lines
954 B
YAML
name: GraphRAG CI
|
|
pool:
|
|
vmImage: ubuntu-latest
|
|
|
|
trigger:
|
|
batch: true
|
|
branches:
|
|
include:
|
|
- main
|
|
|
|
variables:
|
|
isMain: $[eq(variables['Build.SourceBranch'], 'refs/heads/main')]
|
|
pythonVersion: "3.13"
|
|
poetryVersion: "1.6.1"
|
|
nodeVersion: "18.x"
|
|
artifactsFullFeedName: "Resilience/resilience_python"
|
|
|
|
stages:
|
|
- stage: Compliance
|
|
dependsOn: []
|
|
jobs:
|
|
- job: compliance
|
|
displayName: Compliance
|
|
pool:
|
|
vmImage: windows-latest
|
|
steps:
|
|
- task: CredScan@3
|
|
inputs:
|
|
outputFormat: sarif
|
|
debugMode: false
|
|
|
|
- task: ComponentGovernanceComponentDetection@0
|
|
inputs:
|
|
scanType: "Register"
|
|
verbosity: "Verbose"
|
|
alertWarningLevel: "High"
|
|
|
|
- task: PublishSecurityAnalysisLogs@3
|
|
inputs:
|
|
ArtifactName: "CodeAnalysisLogs"
|
|
ArtifactType: "Container" |