Skip to content

Commit 3f9297f

Browse files
committed
DROP ME
1 parent 3695807 commit 3f9297f

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

.github/workflows/ci.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ jobs:
5151
os: windows-11-arm
5252
run_tests: YES
5353
steps:
54+
- name: Ensure that awscli is installed
55+
# if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
56+
run: |
57+
Get-Command aws
58+
aws --version
5459
- uses: actions/checkout@v4
5560
# v2 defaults to a shallow checkout, but we need at least to the previous tag
5661
with:
@@ -154,11 +159,6 @@ jobs:
154159
path: |
155160
target/${{ matrix.target }}/release/rustup-init.exe
156161
retention-days: 7
157-
- name: Ensure that awscli is installed
158-
if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
159-
run: |
160-
Get-Command aws
161-
aws --version
162162
- name: Prepare the dist
163163
if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
164164
run: |
@@ -223,6 +223,11 @@ jobs:
223223
os: windows-11-arm
224224
run_tests: YES
225225
steps:
226+
- name: Ensure that awscli is installed
227+
# if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
228+
run: |
229+
Get-Command aws
230+
aws --version
226231
- uses: actions/checkout@v4
227232
# v2 defaults to a shallow checkout, but we need at least to the previous tag
228233
with:
@@ -326,11 +331,6 @@ jobs:
326331
path: |
327332
target/${{ matrix.target }}/release/rustup-init.exe
328333
retention-days: 7
329-
- name: Ensure that awscli is installed
330-
if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
331-
run: |
332-
Get-Command aws
333-
aws --version
334334
- name: Prepare the dist
335335
if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
336336
run: |
@@ -401,6 +401,11 @@ jobs:
401401
mingwdir: mingw32 # skip-pr skip-master
402402
gcc: i686-w64-mingw32-gcc # skip-pr skip-master
403403
steps:
404+
- name: Ensure that awscli is installed
405+
# if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
406+
run: |
407+
Get-Command aws
408+
aws --version
404409
- uses: actions/checkout@v4
405410
# v2 defaults to a shallow checkout, but we need at least to the previous tag
406411
with:
@@ -504,11 +509,6 @@ jobs:
504509
path: |
505510
target/${{ matrix.target }}/release/rustup-init.exe
506511
retention-days: 7
507-
- name: Ensure that awscli is installed
508-
if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
509-
run: |
510-
Get-Command aws
511-
aws --version
512512
- name: Prepare the dist
513513
if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
514514
run: |

ci/actions-templates/windows-builds-template.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ jobs: # skip-master skip-pr skip-stable
4444
mingwdir: mingw32 # skip-pr skip-master
4545
gcc: i686-w64-mingw32-gcc # skip-pr skip-master
4646
steps:
47+
- name: Ensure that awscli is installed
48+
# if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
49+
run: |
50+
Get-Command aws
51+
aws --version
4752
- uses: actions/checkout@v4
4853
# v2 defaults to a shallow checkout, but we need at least to the previous tag
4954
with:
@@ -147,11 +152,6 @@ jobs: # skip-master skip-pr skip-stable
147152
path: |
148153
target/${{ matrix.target }}/release/rustup-init.exe
149154
retention-days: 7
150-
- name: Ensure that awscli is installed
151-
if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
152-
run: |
153-
Get-Command aws
154-
aws --version
155155
- name: Prepare the dist
156156
if: github.event_name == 'push' && matrix.mode == 'release' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/master')
157157
run: |

0 commit comments

Comments
 (0)