Skip to content

Commit 852f913

Browse files
committed
manually set home
1 parent e2fbe12 commit 852f913

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/main.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,13 @@ jobs:
119119
- name: Print runner information
120120
run: uname -a
121121

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+
122129
# Native runners don't have rustup by default
123130
- name: Install rustup
124131
if: matrix.os == 'ubuntu-24.04-ppc64le' || matrix.os == 'ubuntu-24.04-s390x'

0 commit comments

Comments
 (0)