File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -119,13 +119,6 @@ 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-
129122 # Native runners don't have rustup by default
130123 - name : Install rustup
131124 if : matrix.os == 'ubuntu-24.04-ppc64le' || matrix.os == 'ubuntu-24.04-s390x'
@@ -141,8 +134,12 @@ jobs:
141134 rustup update "$channel" --no-self-update
142135 rustup default "$channel"
143136 rustup target add "${{ matrix.target }}"
137+
138+ # Our scripts use nextest if possible. This is skipped on the native ppc
139+ # and s390x runners since install-action doesn't support them.
144140 - uses : taiki-e/install-action@nextest
145141 if : " !(matrix.os == 'ubuntu-24.04-ppc64le' || matrix.os == 'ubuntu-24.04-s390x')"
142+
146143 - uses : Swatinem/rust-cache@v2
147144 with :
148145 key : ${{ matrix.target }}
You can’t perform that action at this time.
0 commit comments