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 e2fbe12 commit 852f913Copy full SHA for 852f913
.github/workflows/main.yaml
@@ -119,6 +119,13 @@ jobs:
119
- name: Print runner information
120
run: uname -a
121
122
+ # ppc/s390x runners don't have HOME set
123
+ - name: Set $HOME
124
+ if: matrix.os == 'ubuntu-24.04-ppc64le' || matrix.os == 'ubuntu-24.04-s390x'
125
+ run: |
126
+ set -x
127
+ echo "HOME=$(realpath ~)" >> "$GITHUB_ENV"
128
+
129
# Native runners don't have rustup by default
130
- name: Install rustup
131
if: matrix.os == 'ubuntu-24.04-ppc64le' || matrix.os == 'ubuntu-24.04-s390x'
0 commit comments