Skip to content

Commit 43078f1

Browse files
authored
Fix dev container and labels for periodic failures (#925)
Signed-off-by: James Sturtevant <[email protected]>
1 parent 2e5a751 commit 43078f1

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,5 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
5858
&& rustup target add x86_64-unknown-linux-musl \
5959
&& rustup target add x86_64-unknown-none \
6060
&& rustup toolchain add nightly-x86_64-unknown-linux-gnu \
61-
&& rustup toolchain add nightly-x86_64-unknown-linux-musl \
6261
&& cargo install just \
63-
cargo install cross --locked --version 0.2.5
62+
&& cargo install cross --locked --version 0.2.5

.github/workflows/Fuzzing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ jobs:
2828
uses: actions/checkout@v5
2929

3030
- name: Notify Fuzzing Failure
31-
run: ./dev/notify-ci-failure.sh --labels="area/fuzzing,kind/bug,area/testing,lifecycle/needs-review,release-blocker"
31+
run: ./dev/notify-ci-failure.sh --labels="area/fuzzing,area/testing,lifecycle/needs-review,release-blocker"
3232
env:
3333
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/RustNightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ jobs:
3939
uses: actions/checkout@v5
4040

4141
- name: Notify Nightly Failure
42-
run: ./dev/notify-ci-failure.sh --title="Nightly musl Failure - ${{ github.run_number }}" --labels="area/ci-periodics,area/testing,kind/bug,lifecycle/needs-review,release-blocker"
42+
run: ./dev/notify-ci-failure.sh --title="Nightly musl Failure - ${{ github.run_number }}" --labels="area/ci-periodics,area/testing,lifecycle/needs-review,release-blocker"
4343
env:
4444
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)