Skip to content
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
5f70d91
Update azure-pipelines.yml
pettershao-ragilenetworks May 6, 2021
e6fcc9b
Merge pull request #1 from pettershao-ragilenetworks/pettershao-ragil…
pettershao-ragilenetworks May 6, 2021
7e1a53b
Update azure-pipelines.yml
pettershao-ragilenetworks May 6, 2021
8850fcc
Update azure-pipelines.yml
pettershao-ragilenetworks May 6, 2021
4391376
Update azure-pipelines.yml
pettershao-ragilenetworks May 6, 2021
25135a5
Update azure-pipelines.yml
pettershao-ragilenetworks May 6, 2021
0a5fa78
Update azure-pipelines.yml
pettershao-ragilenetworks May 6, 2021
f654d2d
Update azure-pipelines.yml
pettershao-ragilenetworks May 6, 2021
c2396aa
Update azure-pipelines.yml
pettershao-ragilenetworks May 7, 2021
46d3402
Update azure-pipelines.yml
pettershao-ragilenetworks May 11, 2021
ed446e9
Update azure-pipelines.yml
pettershao-ragilenetworks May 11, 2021
3eeac48
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 9, 2021
1d2bcf2
trigger build
pettershao-ragilenetworks Jun 9, 2021
d859738
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 11, 2021
c8effd4
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 11, 2021
529d2bd
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 11, 2021
18f9952
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
eedd0d1
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
c289a81
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
6e39459
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
3ee0ba4
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
2a0afcc
test dependence of .NET
pettershao-ragilenetworks Jun 29, 2021
6e6f37d
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
a538bf7
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
1d61102
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
92ca9d0
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
d010818
recover update
pettershao-ragilenetworks Jun 29, 2021
881f2bb
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 29, 2021
9e150fd
put add source at begning
pettershao-ragilenetworks Jun 30, 2021
5cf5f03
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 30, 2021
c1907aa
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 30, 2021
5f0d245
Update azure-pipelines.yml
pettershao-ragilenetworks Jun 30, 2021
e6ae344
try dotnet-install.sh
pettershao-ragilenetworks Jun 30, 2021
6d7d583
recove change
pettershao-ragilenetworks Jun 30, 2021
d448256
Update azure-pipelines.yml
pettershao-ragilenetworks Jul 8, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ stages:

- script: |
set -ex

sudo apt-get -y purge libhiredis-dev libnl-3-dev libnl-route-3-dev
sudo dpkg -i ../target/debs/buster/{libswsscommon_1.0.0_amd64.deb,python3-swsscommon_1.0.0_amd64.deb,libnl-3-200_*.deb,libnl-genl-3-200_*.deb,libnl-nf-3-200_*.deb,libnl-route-3-200_*.deb,libhiredis0.14_*.deb}
sudo python3 -m pip install ../target/python-wheels/swsssdk*-py3-*.whl
sudo python3 -m pip install ../target/python-wheels/sonic_py_common-1.0-py3-none-any.whl
Expand All @@ -59,6 +59,15 @@ stages:
python3 setup.py test
displayName: "Unit tests"

- script: |
set -ex
# Install .NET CORE
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo apt-add-repository https://packages.microsoft.com/debian/10/prod
sudo apt-get update
Copy link
Copy Markdown
Contributor

@qiluo-msft qiluo-msft Jun 10, 2021

Choose a reason for hiding this comment

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

update

Why update twice? #Closed

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

ok, fixed!

sudo apt-get install -y dotnet-sdk-5.0
displayName: "Install .NET CORE"

- task: PublishTestResults@2
inputs:
testResultsFiles: '$(System.DefaultWorkingDirectory)/test-results.xml'
Expand Down