Skip to content

Commit

Permalink
And yes, it looks for the lock file. Sigh.
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpryce committed Feb 18, 2022
1 parent 3ac8b80 commit d306946
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions .devops/build.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
jobs:
- job: component_detection
displayName: Register Dependencies
strategy:
matrix:
linux:
os: "ubuntu-latest"
macos:
os: "macos-latest"
windows:
os: "windows-latest"
pool:
vmImage: $(os)
- job: component_detection
displayName: Register Dependencies
strategy:
matrix:
linux:
os: "ubuntu-latest"
macos:
os: "macos-latest"
windows:
os: "windows-latest"
pool:
vmImage: $(os)
steps:
- task: Bash@3
inputs:
targetType: 'inline'
script: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
cd packages/pyo3
cargo build --release
- task: ComponentGovernanceComponentDetection@0
inputs:
detectorsToRun: 'Rust, Python'
verbosity: 'Verbose'

0 comments on commit d306946

Please sign in to comment.