feat: add retry for install tools
All checks were successful
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Successful in 14m49s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Successful in 8m51s
linux-arm-gcc / linux-gcc-arm (Release) (push) Successful in 8m0s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Successful in 9m19s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Successful in 8m38s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Successful in 8m53s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Successful in 8m35s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Successful in 9m23s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Successful in 8m50s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Successful in 8m52s
linux-x64-clang / linux-clang (Debug) (push) Successful in 6m42s
linux-x64-clang / linux-clang (Release) (push) Successful in 6m47s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 9m1s
linux-x64-gcc / linux-gcc (Release) (push) Successful in 8m48s
linux-x86-gcc / linux-gcc (Debug) (push) Successful in 9m51s
linux-x86-gcc / linux-gcc (Release) (push) Successful in 9m38s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Successful in 10m10s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Successful in 9m2s
All checks were successful
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Successful in 14m49s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Successful in 8m51s
linux-arm-gcc / linux-gcc-arm (Release) (push) Successful in 8m0s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Successful in 9m19s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Successful in 8m38s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Successful in 8m53s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Successful in 8m35s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Successful in 9m23s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Successful in 8m50s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Successful in 8m52s
linux-x64-clang / linux-clang (Debug) (push) Successful in 6m42s
linux-x64-clang / linux-clang (Release) (push) Successful in 6m47s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 9m1s
linux-x64-gcc / linux-gcc (Release) (push) Successful in 8m48s
linux-x86-gcc / linux-gcc (Debug) (push) Successful in 9m51s
linux-x86-gcc / linux-gcc (Release) (push) Successful in 9m38s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Successful in 10m10s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Successful in 9m2s
This commit is contained in:
@@ -38,8 +38,13 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: install-tools
|
||||
run: |
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
timeout_minutes: 5
|
||||
max_attempts: 3
|
||||
command: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y ninja-build
|
||||
|
||||
|
||||
@@ -39,7 +39,11 @@ jobs:
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: install-tools
|
||||
run: |
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
timeout_minutes: 5
|
||||
max_attempts: 3
|
||||
command: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y g++-aarch64-linux-gnu qemu-user-binfmt ninja-build
|
||||
- name: configure
|
||||
|
||||
@@ -65,7 +65,11 @@ jobs:
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: arm-gnu-toolchain
|
||||
run: |
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
timeout_minutes: 5
|
||||
max_attempts: 3
|
||||
command: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y g++-arm-linux-gnueabihf qemu-user-binfmt ninja-build
|
||||
- name: configure
|
||||
|
||||
@@ -36,7 +36,11 @@ jobs:
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: install-tools
|
||||
run: |
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
timeout_minutes: 5
|
||||
max_attempts: 3
|
||||
command: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y g++-mipsel-linux-gnu qemu-user-binfmt ninja-build
|
||||
- name: configure
|
||||
|
||||
@@ -37,7 +37,11 @@ jobs:
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: install-tools
|
||||
run: |
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
timeout_minutes: 5
|
||||
max_attempts: 3
|
||||
command: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y g++-mips64el-linux-gnuabi64 qemu-user-binfmt ninja-build
|
||||
- name: configure
|
||||
|
||||
@@ -38,7 +38,11 @@ jobs:
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: install-tools
|
||||
run: |
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
timeout_minutes: 5
|
||||
max_attempts: 3
|
||||
command: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y g++-riscv64-linux-gnu qemu-user-binfmt ninja-build
|
||||
- name: configure
|
||||
|
||||
@@ -30,7 +30,11 @@ jobs:
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: install-tools
|
||||
run: |
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
timeout_minutes: 5
|
||||
max_attempts: 3
|
||||
command: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y ninja-build
|
||||
- name: configure
|
||||
|
||||
@@ -34,7 +34,11 @@ jobs:
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: install-tools
|
||||
run: |
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
timeout_minutes: 5
|
||||
max_attempts: 3
|
||||
command: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y ninja-build
|
||||
- name: configure
|
||||
|
||||
@@ -36,7 +36,11 @@ jobs:
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: install-tools
|
||||
run: |
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
timeout_minutes: 5
|
||||
max_attempts: 3
|
||||
command: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y gcc-multilib g++-multilib ninja-build
|
||||
- name: configure
|
||||
|
||||
Reference in New Issue
Block a user