File tree 1 file changed +8
-3
lines changed 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -62,20 +62,25 @@ jobs:
62
62
run : git apply -v "${{ env.IMGTOOL_PACKING_PATH }}/patches/"*
63
63
64
64
- name : Set up Python ${{ env.PYTHON_VERSION }}
65
+ if : matrix.os != 'macos-10.15'
65
66
uses : actions/setup-python@v3
66
67
with :
67
68
python-version : ${{ env.PYTHON_VERSION }}
68
69
architecture : ${{ matrix.python_arch }}
70
+
71
+ - name : Set up Python ${{ env.PYTHON_VERSION }} on macOS
72
+ if : matrix.os == 'macos-10.15'
73
+ run : brew install python@${{ env.PYTHON_VERSION }}
69
74
70
75
- name : Upgrade PIP
71
- run : python -m pip install --upgrade pip setuptools wheel
76
+ run : python3 -m pip install --upgrade pip setuptools wheel
72
77
73
78
- name : Install python dependencies
74
79
working-directory : ${{ env.MCUBOOT_PATH }}/scripts/
75
- run : pip install -r requirements.txt
80
+ run : pip3 install -r requirements.txt
76
81
77
82
- name : Install pyinstaller
78
- run : pip install pyinstaller==5.0.1
83
+ run : pip3 install pyinstaller==5.0.1
79
84
80
85
- name : Build
81
86
if : matrix.os != 'macos-10.15'
You can’t perform that action at this time.
0 commit comments