Skip to content

Commit b16a2ec

Browse files
committed
ci: fix3
1 parent cbf33bb commit b16a2ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# figure out native target triple while we're at it
3737
- name: install rust-toolchain
3838
run: |
39-
echo "$TARGET=$(rustc --print host-tuple)" >> $GITHUB_ENV
39+
echo "TARGET=$(rustc --print host-tuple)" >> $GITHUB_ENV
4040
echo $TARGET
4141
# Fetch dependencies in a separate step to clearly show how long each part
4242
# of the testing takes
@@ -133,7 +133,7 @@ jobs:
133133
cache: true
134134
- name: install rust-toolchain
135135
run: |
136-
echo "$TARGET=$(rustc --print host-tuple)" >> $GITHUB_ENV
136+
echo "TARGET=$(rustc --print host-tuple)" >> $GITHUB_ENV
137137
echo $TARGET
138138
- name: cargo fetch --locked
139139
run: cargo fetch --locked --target $TARGET
@@ -165,7 +165,7 @@ jobs:
165165
sudo apt install -y xvfb libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers
166166
- name: install rust-toolchain
167167
run: |
168-
echo "$TARGET=$(rustc --print host-tuple)" >> $GITHUB_ENV
168+
echo "TARGET=$(rustc --print host-tuple)" >> $GITHUB_ENV
169169
echo $TARGET
170170
- name: cargo fetch --locked
171171
run: cargo fetch --locked --target $TARGET

0 commit comments

Comments
 (0)