Skip to content

Commit 776318a

Browse files
authored
Merge branch 'main' into ctest-next-test-port
2 parents 66cffca + 6e8350e commit 776318a

File tree

106 files changed

+1374
-603
lines changed

Some content is hidden

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

106 files changed

+1374
-603
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ on:
44
merge_group:
55
pull_request:
66
types: [opened, synchronize, reopened]
7+
schedule:
8+
# Run CI on `main` daily so there is a cache available for merge queues.
9+
# See <https://github.com/orgs/community/discussions/66430>
10+
- cron: "0 8 * * *"
11+
workflow_dispatch:
712

813
env:
914
CARGO_TERM_COLOR: always
@@ -61,12 +66,6 @@ jobs:
6166
TOOLCHAIN: ${{ matrix.toolchain }}
6267
steps:
6368
- uses: actions/checkout@v4
64-
# Remove `-Dwarnings` at the MSRV since lints may be different or buffier
65-
- name: Update RUSTFLAGS
66-
run: |
67-
set -eux
68-
[ "${{ matrix.toolchain }}" = "1.63.0" ] && echo 'RUSTFLAGS=' >> "$GITHUB_ENV" || true
69-
7069
- name: Setup Rust toolchain
7170
run: ./ci/install-rust.sh
7271

@@ -84,7 +83,11 @@ jobs:
8483
run: du -sh target | sort -k 2 || true
8584

8685
- name: Execute build.sh
87-
run: ./ci/verify-build.sh
86+
run: |
87+
set -eux
88+
# Remove `-Dwarnings` at the MSRV since lints may be different
89+
[ "${{ matrix.toolchain }}" = "1.63.0" ] && export RUSTFLAGS=""
90+
./ci/verify-build.sh
8891
- name: Target size after job completion
8992
run: du -sh target | sort -k 2
9093

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
target
2-
Cargo.lock
32
*~

0 commit comments

Comments
 (0)