Commit 9496b92 1 parent 96de341 commit 9496b92 Copy full SHA for 9496b92
File tree 1 file changed +14
-4
lines changed
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -153,17 +153,27 @@ jobs:
153
153
154
154
steps :
155
155
- name : Checkout repository
156
- uses : actions/checkout@v2
156
+ uses : actions/checkout@v4
157
+ with :
158
+ submodules : " recursive"
157
159
158
160
- name : Install dependencies
159
161
run : |
160
162
apt-get update
161
163
apt-get install -y python3-pip python3-venv rocm-libs
162
164
163
- - name : Set up Python environment
165
+ - name : Install git on container
164
166
run : |
165
- python3 -m venv /opt/venv
166
- . /opt/venv/bin/activate
167
+ apt update
168
+ apt install -y git
169
+
170
+ - name : Setup Python
171
+ uses : actions/setup-python@v5
172
+ continue-on-error : true
173
+ id : setup-python
174
+ with :
175
+ python-version : ${{ matrix.pyver }}
176
+ cache : " pip"
167
177
168
178
- name : Set ROCm environment variables
169
179
run : |
You can’t perform that action at this time.
0 commit comments