We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17953cb commit 700eaf6Copy full SHA for 700eaf6
.github/workflows/test.yml
@@ -27,14 +27,17 @@ jobs:
27
cmake -G "MinGW Makefiles" .. -DENABLE_SSL=OFF
28
make
29
cd ..
30
- ./bin/test_bin.exe
+ wget https://raw.githubusercontent.com/chenxuan520/gh-action-shell/main/cmd_retry.ps1
31
+ ./cmd_retry.ps1 ./bin/test_bin.exe 2
32
33
- name: Run test #需要执行的命令
34
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
35
run: |
36
cd src
37
./build.sh
- ./bin/test_bin
38
+ wget https://raw.githubusercontent.com/chenxuan520/gh-action-shell/main/cmd_retry.sh
39
+ chmod +x ./cmd_retry.sh
40
+ ./cmd_retry.sh ./bin/test_bin 2
41
42
- name: Run Memory Check
43
if: matrix.os == 'ubuntu-latest'
0 commit comments