File tree 1 file changed +22
-3
lines changed
1 file changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,32 @@ jobs:
12
12
runs-on : ${{ matrix.os }}
13
13
strategy :
14
14
matrix :
15
- os : [windows-latest, ubuntu-latest, macOS-latest ]
15
+ os : [windows-latest, ubuntu-latest]
16
16
17
17
steps :
18
18
- uses : actions/checkout@v1
19
19
20
- - name : install conan
21
- run : pip3 install conan
20
+ - uses : actions/setup-python@v1
21
+ with :
22
+ python-version : ' 3.x'
23
+
24
+ - name : Install tools (Linux)
25
+ if : startsWith(runner.os, 'Linux')
26
+ run : |
27
+ sudo apt-get install python3-setuptools python3-wheel python3-pip
28
+ shell : bash
29
+
30
+ - name : Install conan (Linux)
31
+ if : startsWith(runner.os, 'Linux')
32
+ run : |
33
+ sudo pip3 install conan --upgrade
34
+ shell : bash
35
+
36
+ - name : Install conan (Windows)
37
+ if : startsWith(runner.os, 'Windows')
38
+ run : |
39
+ pip3 install conan --upgrade
40
+ shell : bash
22
41
23
42
- name : Create Build Environment
24
43
run : cmake -E make_directory ${{runner.workspace}}/build
You can’t perform that action at this time.
0 commit comments