Skip to content

Commit 792e6c4

Browse files

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ jobs:
206206
with:
207207
fetch-depth: 0
208208
- name: Install sccache
209-
uses: mozilla-actions/[email protected].7
209+
uses: mozilla-actions/[email protected].9
210210

211211
- name: Setup Environment (PR)
212212
if: ${{ github.event_name == 'pull_request' }}
@@ -238,7 +238,7 @@ jobs:
238238
- uses: dtolnay/rust-toolchain@stable
239239
with:
240240
components: rustfmt
241-
- uses: mozilla-actions/[email protected].7
241+
- uses: mozilla-actions/[email protected].9
242242
- uses: taiki-e/install-action@cargo-make
243243
- run: cargo make format-check
244244

@@ -256,7 +256,7 @@ jobs:
256256
with:
257257
toolchain: nightly-2024-11-30
258258
- name: Install sccache
259-
uses: mozilla-actions/[email protected].7
259+
uses: mozilla-actions/[email protected].9
260260

261261
- name: Docs
262262
run: cargo doc --workspace --all-features --no-deps --document-private-items
@@ -273,7 +273,7 @@ jobs:
273273
with:
274274
components: clippy
275275
- name: Install sccache
276-
uses: mozilla-actions/[email protected].7
276+
uses: mozilla-actions/[email protected].9
277277

278278
# TODO: We have a bunch of platform-dependent code so should
279279
# probably run this job on the full platform matrix
@@ -300,7 +300,7 @@ jobs:
300300
with:
301301
toolchain: ${{ env.MSRV }}
302302
- name: Install sccache
303-
uses: mozilla-actions/[email protected].7
303+
uses: mozilla-actions/[email protected].9
304304

305305
- name: Check MSRV all features
306306
run: |

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
toolchain: nightly-2024-11-30
3636
- name: Install sccache
37-
uses: mozilla-actions/[email protected].7
37+
uses: mozilla-actions/[email protected].9
3838

3939
- name: Generate Docs
4040
run: cargo doc --workspace --all-features --no-deps

.github/workflows/netsim_runner.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
uses: dtolnay/rust-toolchain@stable
110110

111111
- name: Install sccache
112-
uses: mozilla-actions/[email protected].7
112+
uses: mozilla-actions/[email protected].9
113113

114114
- name: Build iroh
115115
run: |
@@ -142,7 +142,7 @@ jobs:
142142
shell: bash
143143
run: |
144144
echo "LAST_COMMIT_SHA=$(git rev-parse --short ${GITHUB_SHA})" >> ${GITHUB_ENV}
145-
145+
146146
- name: Run tests
147147
id: run_tests
148148
continue-on-error: true
@@ -163,14 +163,14 @@ jobs:
163163
python3 reports_csv.py --prom --commit ${{ env.LAST_COMMIT_SHA }} > report_prom.txt
164164
python3 reports_csv.py --metro --commit ${{ env.LAST_COMMIT_SHA }} > report_metro.txt
165165
python3 reports_csv.py --metro --integration --commit ${{ env.LAST_COMMIT_SHA }} > report_metro_integration.txt
166-
166+
167167
- name: Upload report
168168
if: always()
169169
run: |
170170
export AWS_ACCESS_KEY_ID=${{secrets.S3_ACCESS_KEY_ID}}
171171
export AWS_SECRET_ACCESS_KEY=${{secrets.S3_ACCESS_KEY}}
172172
export AWS_DEFAULT_REGION=us-west-2
173-
173+
174174
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
175175
unzip -q awscliv2.zip
176176
sudo ./aws/install --update
@@ -181,7 +181,7 @@ jobs:
181181
tar -cvzf report.tar.gz report_prom.txt report_table.txt report_metro.txt report_metro_integration.txt logs/ report/ viz/
182182
if [[ -n "${{ secrets.S3_BUCKET }}" ]]; then
183183
aws s3 cp ./report.tar.gz s3://${{secrets.S3_REPORT_BUCKET}}/$aws_fname --no-progress
184-
fi
184+
fi
185185
186186
- name: Move report
187187
if: always()
@@ -197,7 +197,7 @@ jobs:
197197
path: report.tar.gz
198198
retention-days: 3
199199
overwrite: true
200-
200+
201201
- name: Fail Job if Tests Failed
202202
if: ${{ steps.run_tests.outcome == 'failure' }}
203203
run: |
@@ -222,10 +222,10 @@ jobs:
222222
body: |
223223
Netsim report & logs for this PR have been generated and is available at: [LOGS](${{steps.upload-report.outputs.artifact-url}})
224224
This report will remain available for 3 days.
225-
225+
226226
Last updated for commit: ${{ env.LAST_COMMIT_SHA }}
227227
edit-mode: replace
228-
228+
229229
- name: Generate report table
230230
if: ${{ inputs.pr_number != '' && inputs.report_table}}
231231
id: generate_report_table
@@ -269,4 +269,4 @@ jobs:
269269
270270
- name: Cleanup
271271
run: |
272-
./cleanup.sh || true
272+
./cleanup.sh || true

.github/workflows/test_relay_server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install rust stable
3333
uses: dtolnay/rust-toolchain@stable
3434
- name: Install sccache
35-
uses: mozilla-actions/[email protected].7
35+
uses: mozilla-actions/[email protected].9
3636

3737
- name: build release
3838
run: |

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
7070

7171
- name: Install sccache
72-
uses: mozilla-actions/[email protected].7
72+
uses: mozilla-actions/[email protected].9
7373

7474
- name: Select features
7575
run: |
@@ -206,7 +206,7 @@ jobs:
206206
}
207207
208208
- name: Install sccache
209-
uses: mozilla-actions/[email protected].7
209+
uses: mozilla-actions/[email protected].9
210210

211211
- uses: msys2/setup-msys2@v2
212212
with:

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)