Skip to content

Commit 7f758c6

Browse files
committed
update
1 parent 1f3b889 commit 7f758c6

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)