Skip to content

Commit 390c5ce

Browse files
Update CFS usage (#252)
1 parent 672c5e9 commit 390c5ce

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

.pipelines/smp.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,15 @@ pool:
1919
vmImage: "ubuntu-22.04"
2020

2121
steps:
22+
- task: PipAuthenticate@1
23+
displayName: 'Pip Authenticate'
24+
inputs:
25+
# Provide list of feed names which you want to authenticate.
26+
# Project scoped feeds must include the project name in addition to the feed name.
27+
artifactFeeds: 'X-Ware/X-Ware_PublicPackages'
28+
2229
- bash: sudo $(Build.SourcesDirectory)/scripts/install.sh
2330
displayName: 'Install softwares'
24-
env:
25-
INDEX_URL: $(INDEX_URL)
2631

2732
- task: Bash@3
2833
displayName: 'SDL check'

.pipelines/tx.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,15 @@ pool:
1818
vmImage: "ubuntu-22.04"
1919

2020
steps:
21+
- task: PipAuthenticate@1
22+
displayName: 'Pip Authenticate'
23+
inputs:
24+
# Provide list of feed names which you want to authenticate.
25+
# Project scoped feeds must include the project name in addition to the feed name.
26+
artifactFeeds: 'X-Ware/X-Ware_PublicPackages'
27+
2128
- bash: sudo $(Build.SourcesDirectory)/scripts/install.sh
2229
displayName: 'Install softwares'
23-
env:
24-
INDEX_URL: $(INDEX_URL)
2530

2631
- task: Bash@3
2732
displayName: 'SDL check'

scripts/install.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@ apt-get install -y \
1717
software-properties-common
1818

1919
python3 -m pip install --upgrade pip
20-
pip3 install artifacts-keyring
21-
pip3 install gcovr==4.1 $INDEX_URL
20+
pip3 install gcovr==4.1
2221

0 commit comments

Comments
 (0)