Skip to content

Commit b3ca0a1

Browse files
committed
Merge remote-tracking branch 'origin' into test-codebuild-runner
2 parents 6b9ed61 + 8a1f803 commit b3ca0a1

File tree

3,049 files changed

+63539
-32406
lines changed

Some content is hidden

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

3,049 files changed

+63539
-32406
lines changed

.gitattributes

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
*.cpp rust
55
*.h rust
66
*.rs rust diff=rust
7-
*.fixed linguist-language=Rust -merge
8-
*.mir linguist-language=Rust -merge
9-
*.stderr -merge
10-
*.stdout -merge
7+
*.fixed linguist-language=Rust
8+
*.mir linguist-language=Rust
119
src/etc/installer/gfx/* binary
1210
src/vendor/** -text
1311
Cargo.lock linguist-generated=false

.github/renovate.json5

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
// Let Renovatebot keep an opened issue that tracks our dependencies
4+
"dependencyDashboard": true,
5+
// Disable "normal" package updates
6+
"enabledManagers": [],
7+
// Update lockfiles once per week
8+
"lockFileMaintenance": {
9+
"enabled": true,
10+
"schedule": [
11+
"before 5am on Tuesday"
12+
]
13+
}
14+
}

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,9 @@ jobs:
241241
DATADOG_API_KEY: ${{ secrets.DATADOG_API_KEY }}
242242
DD_GITHUB_JOB_NAME: ${{ matrix.name }}
243243
run: |
244-
npm install -g @datadog/datadog-ci@^2.x.x
245-
python3 src/ci/scripts/upload-build-metrics.py build/cpu-usage.csv
244+
cd src/ci
245+
npm ci
246+
python3 scripts/upload-build-metrics.py ../../build/cpu-usage.csv
246247
247248
# This job isused to tell bors the final status of the build, as there is no practical way to detect
248249
# when a workflow is successful listening to webhooks only in our current bors implementation (homu).

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ package.json
8888
tests/rustdoc-gui/src/**.lock
8989

9090
## direnv
91-
.envrc
92-
.direnv/
91+
/.envrc
92+
/.direnv/
9393

9494
## nix
95-
flake.nix
95+
/flake.nix
9696
flake.lock
97-
default.nix
97+
/default.nix
9898

9999
# Before adding new lines, see the comment at the top.

0 commit comments

Comments
 (0)