Commit 04b5a83 1 parent 5e4496d commit 04b5a83 Copy full SHA for 04b5a83
File tree 1 file changed +8
-7
lines changed
1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 41
41
- uses : actions/setup-python@v5
42
42
with :
43
43
python-version : ' 3.x' # use latest Python 3.x
44
- - name : ' Install packages'
45
- if : runner.os == 'macOS'
46
- shell : bash
47
- run : |
48
- brew install ${{matrix.packages}}
49
44
- name : ' Add user site-packages to PATH'
50
45
if : runner.os != 'Windows'
51
46
shell : bash
@@ -57,12 +52,18 @@ jobs:
57
52
run : |
58
53
$python_base = python -m site --user-base
59
54
Write-Output "$python_base\\bin" >> $GITHUB_PATH
60
- - uses : msys2/setup-msys2@v2
55
+ - name : ' Install macOS packages'
56
+ if : runner.os == 'macOS'
57
+ shell : bash
58
+ run : |
59
+ brew install ${{matrix.packages}}
60
+ - name : ' Install MSYS2 packages'
61
+ uses : msys2/setup-msys2@v2
61
62
if : runner.os == 'Windows' && matrix.generator == 'MinGW Makefiles'
62
63
with :
63
64
update : false
64
65
release : false
65
- install : make gcc
66
+ install : make gcc autotools
66
67
- name : ' Workaround for actions/runner-images#9491'
67
68
if : runner.os == 'Linux'
68
69
run : sudo sysctl vm.mmap_rnd_bits=28
You can’t perform that action at this time.
0 commit comments