File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -76,10 +76,10 @@ jobs:
76
76
# python3.10.6 libraries instead of the 64-bit libraries when building
77
77
# lldb. Using this setup-python action to make 3.10 the default
78
78
# python fixes this.
79
- - name : Setup Python
80
- uses : actions/setup-python@v4
81
- with :
82
- python-version : ${{ inputs.python_version }}
79
+ # - name: Setup Python
80
+ # uses: actions/setup-python@v4
81
+ # with:
82
+ # python-version: ${{ inputs.python_version }}
83
83
- name : Install Ninja
84
84
if : runner.os != 'Linux'
85
85
uses : llvm/actions/install-ninja@main
91
91
fetch-depth : 250
92
92
- name : Install requirements.txt
93
93
if : inputs.projects == 'mlir'
94
- run : pip install -r mlir/python/requirements.txt
94
+ run : |
95
+ apt-get update
96
+ apt-get install -y python3-pip
97
+ pip install -r mlir/python/requirements.txt
95
98
- name : Setup ccache
96
99
uses : hendrikmuhs/ccache-action@v1
97
100
with :
You can’t perform that action at this time.
0 commit comments