Skip to content

Commit cbf33bb

Browse files
committed
ci: fix2
1 parent 7c74004 commit cbf33bb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.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-
export TARGET=`rustc --print host-tuple`
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-
export TARGET=`rustc --print host-tuple`
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-
export TARGET=`rustc --print host-tuple`
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)