Skip to content

Commit e1d5d9b

Browse files
committed
ci: Rerun gen-workflows
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
1 parent acba3e1 commit e1d5d9b

7 files changed

+49
-0
lines changed

.github/workflows/linux-builds-on-master.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,13 @@ jobs:
121121
--rm \
122122
"${DOCKER}" \
123123
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
124+
- name: Upload the built artifact
125+
uses: actions/upload-artifact@v2
126+
with:
127+
name: rustup-init-${{ matrix.target }}
128+
path: |
129+
target/${{ matrix.target }}/release/rustup-init
130+
retention-days: 7
124131
- name: Acquire the AWS tooling
125132
run: |
126133
pip3 install -U setuptools

.github/workflows/linux-builds-on-pr.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,13 @@ jobs:
114114
--rm \
115115
"${DOCKER}" \
116116
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
117+
- name: Upload the built artifact
118+
uses: actions/upload-artifact@v2
119+
with:
120+
name: rustup-init-${{ matrix.target }}
121+
path: |
122+
target/${{ matrix.target }}/release/rustup-init
123+
retention-days: 7
117124
- name: Acquire the AWS tooling
118125
run: |
119126
pip3 install -U setuptools

.github/workflows/linux-builds-on-stable.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,13 @@ jobs:
144144
--rm \
145145
"${DOCKER}" \
146146
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
147+
- name: Upload the built artifact
148+
uses: actions/upload-artifact@v2
149+
with:
150+
name: rustup-init-${{ matrix.target }}
151+
path: |
152+
target/${{ matrix.target }}/release/rustup-init
153+
retention-days: 7
147154
- name: Acquire the AWS tooling
148155
run: |
149156
pip3 install -U setuptools

.github/workflows/macos-builds-on-all.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ jobs:
9898
echo >&2 "Unfortunately there are /usr/local things in the link. Fail."
9999
exit 1
100100
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
101108
- name: Acquire the AWS tooling
102109
run: |
103110
pip3 install awscli

.github/workflows/windows-builds-on-master.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,13 @@ jobs:
9797
rustup target install ${{ matrix.target }}
9898
- name: Run a full build
9999
run: bash ci/run.bash
100+
- name: Upload the built artifact
101+
uses: actions/upload-artifact@v2
102+
with:
103+
name: rustup-init-${{ matrix.target }}
104+
path: |
105+
target/${{ matrix.target }}/release/rustup-init.exe
106+
retention-days: 7
100107
- name: Acquire the AWS tooling
101108
run: |
102109
choco upgrade awscli

.github/workflows/windows-builds-on-pr.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,13 @@ jobs:
9494
rustup target install ${{ matrix.target }}
9595
- name: Run a full build
9696
run: bash ci/run.bash
97+
- name: Upload the built artifact
98+
uses: actions/upload-artifact@v2
99+
with:
100+
name: rustup-init-${{ matrix.target }}
101+
path: |
102+
target/${{ matrix.target }}/release/rustup-init.exe
103+
retention-days: 7
97104
- name: Acquire the AWS tooling
98105
run: |
99106
choco upgrade awscli

.github/workflows/windows-builds-on-stable.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,13 @@ jobs:
9797
rustup target install ${{ matrix.target }}
9898
- name: Run a full build
9999
run: bash ci/run.bash
100+
- name: Upload the built artifact
101+
uses: actions/upload-artifact@v2
102+
with:
103+
name: rustup-init-${{ matrix.target }}
104+
path: |
105+
target/${{ matrix.target }}/release/rustup-init.exe
106+
retention-days: 7
100107
- name: Acquire the AWS tooling
101108
run: |
102109
choco upgrade awscli

0 commit comments

Comments
 (0)