Skip to content

Commit a51cf70

Browse files
authored
Merge branch 'main' into date_11044
2 parents e2a344b + e0f0318 commit a51cf70

150 files changed

Lines changed: 6875 additions & 4796 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/CICD.yml

Lines changed: 3 additions & 495 deletions
Large diffs are not rendered by default.

.github/workflows/FixPR.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
## * using the 'stable' toolchain is necessary to avoid "unexpected '--filter-platform'" errors
7070
cargo +stable tree --locked --no-dedupe -e=no-dev --prefix=none --features ${{ matrix.job.features }} | grep -vE "$PWD" | sort --unique
7171
- name: Commit any changes (to '${{ env.BRANCH_TARGET }}')
72-
uses: EndBug/add-and-commit@v9
72+
uses: EndBug/add-and-commit@v10
7373
with:
7474
new_branch: ${{ env.BRANCH_TARGET }}
7575
default_author: github_actions

.github/workflows/GnuTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ jobs:
354354
path: 'uutils'
355355
persist-credentials: false
356356
- name: Retrieve reference artifacts
357-
uses: dawidd6/action-download-artifact@v16
357+
uses: dawidd6/action-download-artifact@v19
358358
# ref: <https://github.com/dawidd6/action-download-artifact>
359359
continue-on-error: true ## don't break the build for missing reference artifacts (may be expired or just not generated yet)
360360
with:

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
~/.android/avd/*/*.lock
112112
- name: Create and cache emulator image
113113
if: steps.avd-cache.outputs.cache-hit != 'true'
114-
uses: reactivecircus/android-emulator-runner@v2.35.0
114+
uses: reactivecircus/android-emulator-runner@v2.37.0
115115
with:
116116
api-level: ${{ matrix.api-level }}
117117
target: ${{ matrix.target }}
@@ -156,7 +156,7 @@ jobs:
156156
free -mh
157157
df -Th
158158
- name: Build and Test
159-
uses: reactivecircus/android-emulator-runner@v2.35.0
159+
uses: reactivecircus/android-emulator-runner@v2.37.0
160160
with:
161161
api-level: ${{ matrix.api-level }}
162162
target: ${{ matrix.target }}

.github/workflows/code-quality.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- '*'
1111

1212
env:
13+
CARGO_INCREMENTAL: "0"
1314
# * style job configuration
1415
STYLE_FAIL_ON_FAULT: true ## (bool) fail the build if a style job contains a fault (error or warning); may be overridden on a per-job basis
1516

@@ -66,8 +67,6 @@ jobs:
6667
style_lint:
6768
name: Style/lint
6869
runs-on: ${{ matrix.job.os }}
69-
env:
70-
CARGO_INCREMENTAL: 0
7170
strategy:
7271
fail-fast: false
7372
matrix:
@@ -117,7 +116,7 @@ jobs:
117116
;;
118117
esac
119118
- name: "`cargo clippy` lint testing"
120-
uses: nick-fields/retry@v3
119+
uses: nick-fields/retry@v4
121120
with:
122121
max_attempts: 3
123122
retry_on: error

.github/workflows/fuzzing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Fuzzing
33
# spell-checker:ignore (people) dtolnay Swatinem taiki-e
44
# spell-checker:ignore (misc) fuzzer
55

6+
env:
7+
CARGO_INCREMENTAL: "0"
8+
69
on:
710
pull_request:
811
push:
@@ -20,8 +23,6 @@ concurrency:
2023
jobs:
2124
uufuzz-examples:
2225
name: Build and test uufuzz examples
23-
env:
24-
CARGO_INCREMENTAL: 0
2526
runs-on: ubuntu-latest
2627
steps:
2728
- uses: actions/checkout@v6
@@ -75,7 +76,6 @@ jobs:
7576
timeout-minutes: 5
7677
env:
7778
RUN_FOR: 60
78-
CARGO_INCREMENTAL: 0
7979
strategy:
8080
matrix:
8181
test-target:

0 commit comments

Comments
 (0)