We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fb251b commit 939f2b9Copy full SHA for 939f2b9
.github/workflows/test.yml
@@ -158,6 +158,9 @@ jobs:
158
with:
159
python-version: ${{ matrix.python }}
160
161
+ - name: Fix PATH and XDG_CONFIG_HOME for ARM64 Linux runners (actions/partner-runner-images#25)
162
+ if: matrix.os == 'ubuntu-24.04-arm'
163
+ run: for var in PATH XDG_CONFIG_HOME; do sed -Ee "s/^/${var}=/" -e 's/(runner)admin/\1/g' <<< "${!var}"; done | tee -a "$GITHUB_ENV"
164
- name: Install tox
165
run: |
166
echo PATH; echo $PATH
0 commit comments