Skip to content

Commit a534a9f

Browse files
authored
ci: define TERMUX_VERSION in .github/workflows/termux_ci.yml instead of using -os termux, to make the emulation closer to a real Termux (#25128)
1 parent 4f8a3da commit a534a9f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/termux_ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,15 @@ jobs:
3838
cp -r /src ~/vproject; cd ~/vproject
3939
touch inside_docker.txt
4040
ls -la
41+
git log -n4
42+
echo "previous TERMUX_VERSION: $TERMUX_VERSION"
43+
export TERMUX_VERSION=0.118.3
44+
echo "explicit TERMUX_VERSION: $TERMUX_VERSION"
4145
.github/workflows/retry.sh pkg update -y
4246
.github/workflows/retry.sh pkg install -y clang libexecinfo libgc libgc-static make git
43-
git log -n4
44-
VFLAGS="-cc cc -os termux" make
47+
VFLAGS="-cc cc" make
4548
./v symlink
4649
v run examples/hello_world.v
4750
v run examples/primes.v
51+
v -e "import os; dump( os.user_os() )"
4852
'

0 commit comments

Comments
 (0)