File tree Expand file tree Collapse file tree 2 files changed +18
-10
lines changed Expand file tree Collapse file tree 2 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 22
22
vmImage : ubuntu-22.04
23
23
24
24
steps :
25
+ - script : sudo apt update && sudo apt install -y g++ cmake libssl-dev
26
+ displayName : ' Install dependencies'
27
+
28
+ - task : UseDotNet@2
29
+ inputs :
30
+ packageType : ' sdk'
31
+ version : ' 7.0.x'
32
+ includePreviewVersions : false
33
+ displayName : ' Use .NET 7.0 SDK'
34
+
35
+ - script : |
36
+ lsb_release -a
37
+ uname -a
38
+ make --version
39
+ g++ --version
40
+ dotnet --list-sdks
41
+ displayName : ' Print System Info'
42
+
25
43
- bash : tools/build.sh
26
44
displayName : ' Build Graph Engine'
Original file line number Diff line number Diff line change 2
2
3
3
if [ " $REPO_ROOT " == " " ] ; then REPO_ROOT=" $( readlink -f $( dirname $( readlink -f $0 ) ) /../) " ; fi
4
4
5
- sudo apt update
6
- sudo apt install -y g++ cmake libssl-dev dotnet-sdk-7.0
7
-
8
- echo " Print system info:"
9
- lsb_release -a
10
- uname -a
11
- make --version
12
- g++ --version
13
- dotnet --list-sdks
14
-
15
5
if [ " $( command -v cmake) " == " " ] ;
16
6
then
17
7
echo " error: cmake not found." 1>&2
You can’t perform that action at this time.
0 commit comments