test: document latest DXVK release resolution
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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"
|
||||||
Reference in New Issue
Block a user