mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
ci: use retry.sh for the pkg install
in termux_ci.yml to reduce false positives.
This commit is contained in:
parent
d5458b58eb
commit
f0bfee2911
2 changed files with 6 additions and 6 deletions
6
.github/workflows/prebuilt.yml
vendored
6
.github/workflows/prebuilt.yml
vendored
|
@ -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
|
||||
|
|
6
.github/workflows/termux_ci.yml
vendored
6
.github/workflows/termux_ci.yml
vendored
|
@ -25,7 +25,7 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
- name: Build and test in Termux
|
||||
run: |
|
||||
set -o xtrace
|
||||
set -o xtrace
|
||||
echo "$PWD"
|
||||
whoami
|
||||
touch outside_docker.txt
|
||||
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue