test: document latest DXVK release resolution

This commit is contained in:
magges
2026-07-19 21:21:51 +02:00
parent fc4f4db89b
commit 43099ccbd4
2 changed files with 17 additions and 1 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ It is designed for NixOS and for hosting on a private or public Gitea server wit
- `Elsword-GE-11-1` - `Elsword-GE-11-1`
- Proton-GE 11 base - Proton-GE 11 base
- DXVK stable/latest release tag - DXVK newest stable release at build time
- `Elsword-GE-11-1+dxvk-git` - `Elsword-GE-11-1+dxvk-git`
- Proton-GE 11 base - Proton-GE 11 base
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -euo pipefail
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
source "$REPO_ROOT/scripts/common.sh"
expected_tag="latest"
actual_tag="$(dxvk_tag_for_variant stable)"
if [[ "$actual_tag" != "$expected_tag" ]]; then
printf 'expected stable DXVK tag %s, got %s\n' "$expected_tag" "$actual_tag" >&2
exit 1
fi
printf 'stable DXVK tag resolves dynamically as %s\n' "$actual_tag"