File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -152,6 +152,13 @@ jobs:
152
152
--rm \
153
153
"${DOCKER}" \
154
154
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
155
+ - name : Upload the built artifact
156
+ uses : actions/upload-artifact@v2
157
+ with :
158
+ name : rustup-init-${{ matrix.target }}
159
+ path : |
160
+ target/${{ matrix.target }}/release/rustup-init
161
+ retention-days : 7
155
162
- name : Acquire the AWS tooling
156
163
run : |
157
164
pip3 install -U setuptools
Original file line number Diff line number Diff line change 98
98
echo >&2 "Unfortunately there are /usr/local things in the link. Fail."
99
99
exit 1
100
100
fi
101
+ - name : Upload the built artifact
102
+ uses : actions/upload-artifact@v2
103
+ with :
104
+ name : rustup-init-${{ matrix.target }}
105
+ path : |
106
+ target/${{ matrix.target }}/release/rustup-init
107
+ retention-days : 7
101
108
- name : Acquire the AWS tooling
102
109
run : |
103
110
pip3 install awscli
Original file line number Diff line number Diff line change @@ -105,6 +105,13 @@ jobs:
105
105
rustup target install ${{ matrix.target }}
106
106
- name : Run a full build
107
107
run : bash ci/run.bash
108
+ - name : Upload the built artifact
109
+ uses : actions/upload-artifact@v2
110
+ with :
111
+ name : rustup-init-${{ matrix.target }}
112
+ path : |
113
+ target/${{ matrix.target }}/release/rustup-init.exe
114
+ retention-days : 7
108
115
- name : Acquire the AWS tooling
109
116
run : |
110
117
choco upgrade awscli
You can’t perform that action at this time.
0 commit comments