ci: define TERMUX_VERSION in .github/workflows/termux_ci.yml instead of using -os termux, to make the emulation closer to a real Termux installation

This commit is contained in:
Delyan Angelov 2025-08-17 14:38:07 +03:00
parent 4f8a3dafb3
commit 6b35b1c09a
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED

View file

@ -41,7 +41,10 @@ jobs:
.github/workflows/retry.sh pkg update -y
.github/workflows/retry.sh pkg install -y clang libexecinfo libgc libgc-static make git
git log -n4
VFLAGS="-cc cc -os termux" make
echo "previous TERMUX_VERSION: $TERMUX_VERSION"
export TERMUX_VERSION=0.118.3
echo "explicit TERMUX_VERSION: $TERMUX_VERSION"
VFLAGS="-cc cc" make
./v symlink
v run examples/hello_world.v
v run examples/primes.v