@@ -8,10 +8,10 @@ name: Custom build
8
8
on :
9
9
push :
10
10
branches :
11
- - ' custom_eclever '
11
+ - " cb-try-custom-build "
12
12
paths-ignore :
13
- - ' *.md'
14
- - ' *.sh'
13
+ - " *.md"
14
+ - " *.sh"
15
15
16
16
jobs :
17
17
build_wheels :
@@ -23,57 +23,57 @@ jobs:
23
23
include :
24
24
- image : ubuntu-latest
25
25
platform : linux
26
- # - image: macos-latest
27
- # platform: macos
28
- # - image: windows-latest
29
- # platform: windows
26
+ # - image: macos-latest
27
+ # platform: macos
28
+ # - image: windows-latest
29
+ # platform: windows
30
30
steps :
31
- - uses : actions/checkout@v2
31
+ - uses : actions/checkout@v2
32
32
33
- - name : Configure Python
34
- uses : actions/setup-python@v2
35
- with :
36
- python-version : ' 3.7'
33
+ - name : Configure Python
34
+ uses : actions/setup-python@v2
35
+ with :
36
+ python-version : " 3.7"
37
37
38
- # keep in-sync with the other yaml
39
- - name : Cache Conan (MacOS)
40
- id : cache-conan
41
- uses : actions/cache@v2
42
- if : matrix.platform == 'macos'
43
- with :
44
- path : |
45
- ${{ github.workspace }}/conan_data
46
- ${{ github.workspace }}/conan_build
47
- key : conan-${{ matrix.platform }}-${{ hashFiles('conanfile.txt') }}
48
- restore-keys : |
49
- conan-${{ matrix.platform }}-
38
+ # keep in-sync with the other yaml
39
+ - name : Cache Conan (MacOS)
40
+ id : cache-conan
41
+ uses : actions/cache@v2
42
+ if : matrix.platform == 'macos'
43
+ with :
44
+ path : |
45
+ ${{ github.workspace }}/conan_data
46
+ ${{ github.workspace }}/conan_build
47
+ key : conan-${{ matrix.platform }}-${{ hashFiles('conanfile.txt') }}
48
+ restore-keys : |
49
+ conan-${{ matrix.platform }}-
50
50
51
- - name : Install Conan (MacOS)
52
- if : matrix.platform == 'macos' && steps.cache-conan.outputs.cache-hit != 'true'
53
- run : |
54
- pip install pip --upgrade
55
- pip install conan
56
- conan profile new default --detect
57
- conan config set "storage.path=${{ github.workspace }}/conan_data"
58
- conan install --install-folder ${{ github.workspace }}/conan_build --remote conancenter .
51
+ - name : Install Conan (MacOS)
52
+ if : matrix.platform == 'macos' && steps.cache-conan.outputs.cache-hit != 'true'
53
+ run : |
54
+ pip install pip --upgrade
55
+ pip install conan
56
+ conan profile new default --detect
57
+ conan config set "storage.path=${{ github.workspace }}/conan_data"
58
+ conan install --install-folder ${{ github.workspace }}/conan_build --remote conancenter .
59
59
60
- - name : Install Conan (Windows)
61
- if : matrix.platform == 'windows'
62
- run : |
63
- pip install pip --upgrade
64
- pip install conan
65
- conan profile new default --detect
66
- conan profile update "settings.compiler=Visual Studio" default
67
- conan profile update "settings.compiler.version=16" default
68
- conan config set "storage.path=$env:GITHUB_WORKSPACE/conan_data"
69
- conan install --install-folder conan_build --remote conancenter .
60
+ - name : Install Conan (Windows)
61
+ if : matrix.platform == 'windows'
62
+ run : |
63
+ pip install pip --upgrade
64
+ pip install conan
65
+ conan profile new default --detect
66
+ conan profile update "settings.compiler=Visual Studio" default
67
+ conan profile update "settings.compiler.version=16" default
68
+ conan config set "storage.path=$env:GITHUB_WORKSPACE/conan_data"
69
+ conan install --install-folder conan_build --remote conancenter .
70
70
71
-
72
- env :
73
- MACOSX_DEPLOYMENT_TARGET : 10.9
74
- CIBW_BUILD : cp39* cp310*
71
+
72
+ env :
73
+ MACOSX_DEPLOYMENT_TARGET : 10.9
74
+ CIBW_BUILD : cp39* cp310*
75
75
76
- - name : Upload wheels
77
- uses : actions/upload-artifact@v2
78
- with :
79
- path : wheelhouse/*.whl
76
+ - name : Upload wheels
77
+ uses : actions/upload-artifact@v2
78
+ with :
79
+ path : wheelhouse/*.whl
0 commit comments