Update srs to 2026.06.18

This commit is contained in:
Zanie Blue
2026-06-18 11:31:19 -05:00
parent 635f492fa9
commit 97184b7123
3 changed files with 9 additions and 11 deletions
+6 -6
View File
@@ -36,10 +36,10 @@ runs:
~/.cargo/registry/cache
~/.cargo/git/db
~/.cargo/srs-artifact-cache-v2
key: srs-artifacts-v2-2026.06.11-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml', '**/rust-toolchain.toml', '.cargo/**') }}-${{ github.sha }}
key: srs-artifacts-v2-2026.06.18-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml', '**/rust-toolchain.toml', '.cargo/**') }}-${{ github.sha }}
restore-keys: |
srs-artifacts-v2-2026.06.11-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml', '**/rust-toolchain.toml', '.cargo/**') }}-
srs-artifacts-v2-2026.06.11-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-
srs-artifacts-v2-2026.06.18-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml', '**/rust-toolchain.toml', '.cargo/**') }}-
srs-artifacts-v2-2026.06.18-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-
- name: "Restore Cargo target cache"
if: ${{ inputs.target-path != '' }}
@@ -47,10 +47,10 @@ runs:
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ${{ inputs.target-path }}
key: srs-target-v2-2026.06.11-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ github.job }}-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml', '**/rust-toolchain.toml', '.cargo/**') }}-${{ github.sha }}
key: srs-target-v2-2026.06.18-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ github.job }}-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml', '**/rust-toolchain.toml', '.cargo/**') }}-${{ github.sha }}
restore-keys: |
srs-target-v2-2026.06.11-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ github.job }}-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml', '**/rust-toolchain.toml', '.cargo/**') }}-
srs-target-v2-2026.06.11-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ github.job }}-
srs-target-v2-2026.06.18-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ github.job }}-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml', '**/rust-toolchain.toml', '.cargo/**') }}-
srs-target-v2-2026.06.18-${{ runner.os }}-${{ runner.arch }}-${{ inputs.artifact-cache-scope }}-${{ github.job }}-
- name: "Install srs"
shell: bash
+3 -3
View File
@@ -1,17 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
version="2026.06.11"
version="2026.06.18"
toolchain="srs-${version}"
case "$(uname -s)-$(uname -m)" in
Darwin-arm64)
target="aarch64-apple-darwin"
checksum="1af16e9d499b8c0b03598fbc109712f5168aafe102d7e7a182815faa7265c790"
checksum="396a766e963f42312af25cd09fb69ebd655db62e0a1bb1033897d3fb6217f6fe"
;;
Linux-x86_64)
target="x86_64-unknown-linux-gnu"
checksum="cb8381108109251ed491b43ee4473bfdb6f143bf5f17ceea2af98320bb4227a4"
checksum="5233e51866ee8d5e0bec8fa3dd80198b1c7e49edc2ebcca32ec6bfe3db187736"
;;
*)
echo "srs ${version} does not support $(uname -s)-$(uname -m)" >&2
-2
View File
@@ -90,8 +90,6 @@ jobs:
- name: "Cargo test"
env:
# The Linux test suite exercises catch_unwind, which currently requires LLVM.
RUSTFLAGS: -Zcodegen-backend=llvm
# Retry more than default to reduce flakes in CI
UV_HTTP_RETRIES: 5
RUST_BACKTRACE: 1