@@ -28,13 +28,14 @@ jobs:
28
28
generator : " Visual Studio 17 2022"
29
29
build_type : Debug
30
30
build_tool_options : " -nologo -verbosity:minimal -maxcpucount:4 -p:CL_MPCount=4"
31
- - os : windows-2022
32
- cc : ' C:/mingw64/bin/gcc.exe'
33
- generator : ' MinGW Makefiles'
34
- build_type : Debug
31
+ # - os: windows-2022
32
+ # cc: 'C:/mingw64/bin/gcc.exe'
33
+ # generator: 'MinGW Makefiles'
34
+ # build_type: Debug
35
35
steps :
36
- - uses : actions/checkout@v3
37
- - uses : actions/setup-python@v4
36
+ # actions/checkout@v3, actions/setup-python@v4, actions/cache@v3
37
+ - uses : actions/checkout@v4
38
+ - uses : actions/setup-python@v5
38
39
with :
39
40
python-version : ' 3.x' # use latest Python 3.x
40
41
- name : ' Add user site-packages to PATH'
@@ -48,12 +49,12 @@ jobs:
48
49
run : |
49
50
$python_base = python -m site --user-base
50
51
Write-Output "$python_base\\bin" >> $GITHUB_PATH
51
- - uses : msys2/setup-msys2@v2
52
- if : runner.os == 'Windows' && matrix.generator == 'MinGW Makefiles'
53
- with :
54
- update : false
55
- release : false
56
- install : make gcc
52
+ # - uses: msys2/setup-msys2@v2
53
+ # if: runner.os == 'Windows' && matrix.generator == 'MinGW Makefiles'
54
+ # with:
55
+ # update: false
56
+ # release: false
57
+ # install: make gcc
57
58
- name : ' Install Conan C/C++ package manager'
58
59
id : install_conan
59
60
shell : bash
68
69
echo "conan_data=${conan_home}/p" >> $GITHUB_OUTPUT
69
70
- name : ' Restore Conan cache'
70
71
id : cache_conan
71
- uses : actions/cache@v3
72
+ uses : actions/cache@v4
72
73
with :
73
74
key : conan | 1 | ${{runner.os}} | ${{matrix.cc}} | ${{matrix.build_type}}
74
75
path : ${{ steps.install_conan.outputs.conan_data }}
0 commit comments