ci: use retry.sh for the pkg install in termux_ci.yml to reduce false positives.

This commit is contained in:
Delyan Angelov 2025-08-12 11:31:22 +03:00
parent d5458b58eb
commit f0bfee2911
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
2 changed files with 6 additions and 6 deletions

View file

@ -12,7 +12,7 @@ jobs:
steps:
- name: Download V
run: |
.github/workflows/retry.sh https://github.com/vlang/v/releases/latest/download/v_linux.zip
.github/workflows/retry.sh wget https://github.com/vlang/v/releases/latest/download/v_linux.zip
unzip v_linux.zip
cd v
./v -version
@ -29,7 +29,7 @@ jobs:
steps:
- name: Download V
run: |
.github/workflows/retry.sh https://github.com/vlang/v/releases/latest/download/v_macos_arm64.zip
.github/workflows/retry.sh wget https://github.com/vlang/v/releases/latest/download/v_macos_arm64.zip
unzip v_macos_arm64.zip
cd v
./v -version
@ -45,7 +45,7 @@ jobs:
steps:
- name: Download V
run: |
.github/workflows/retry.sh https://github.com/vlang/v/releases/latest/download/v_macos_x86_64.zip
.github/workflows/retry.sh wget https://github.com/vlang/v/releases/latest/download/v_macos_x86_64.zip
unzip v_macos_x86_64.zip
cd v
./v -version

View file

@ -38,8 +38,8 @@ jobs:
cp -r /src ~/vproject; cd ~/vproject
touch inside_docker.txt
ls -la
pkg update -y
pkg install -y clang libexecinfo libgc libgc-static make git
.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
./v symlink