Skip to content

Commit d3639db

Browse files
authored
Mark date-locale-hour flakey & drop a useless cache action (#11093)
1 parent 74b8924 commit d3639db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/CICD.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,6 @@ jobs:
251251
- uses: actions/checkout@v6
252252
with:
253253
persist-credentials: false
254-
- uses: dtolnay/rust-toolchain@stable
255-
- uses: Swatinem/rust-cache@v2
256254
- name: "`cargo update` testing"
257255
shell: bash
258256
run: |

.github/workflows/ignore-intermittent.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
tests/date/date-locale-hour
12
tests/pr/bounded-memory
23
tests/tail/inotify-dir-recreate
34
tests/tail/overlay-headers

util/run-gnu-tests-smack-ci.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ mkdir -p "$QEMU_DIR"/{rootfs/{bin,lib64,proc,sys,dev,tmp,etc,gnu},kernel}
1818
# Download Arch Linux kernel (has SMACK built-in)
1919
if [ ! -f /tmp/arch-vmlinuz ]; then
2020
echo "Downloading Arch Linux kernel..."
21-
curl -sL -o /tmp/arch-kernel.pkg.tar.zst "https://archlinux.org/packages/core/x86_64/linux/download/"
21+
curl -sL --retry 5 --retry-delay 2 --retry-all-errors \
22+
-o /tmp/arch-kernel.pkg.tar.zst "https://archlinux.org/packages/core/x86_64/linux/download/"
2223
zstd -d /tmp/arch-kernel.pkg.tar.zst -o /tmp/arch-kernel.pkg.tar 2>/dev/null || unzstd /tmp/arch-kernel.pkg.tar.zst -o /tmp/arch-kernel.pkg.tar
2324
VMLINUZ_PATH=$(tar -tf /tmp/arch-kernel.pkg.tar | grep 'vmlinuz$' | head -1)
2425
tar -xf /tmp/arch-kernel.pkg.tar -C /tmp "$VMLINUZ_PATH"

0 commit comments

Comments
 (0)