GHA execution throttling #3739
This commit is contained in:
parent
22aa721c46
commit
166f4e6cc8
|
@ -178,21 +178,20 @@ jobs:
|
||||||
skip-rate: 90
|
skip-rate: 90
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- id: throttle
|
|
||||||
name: Execution throttle early exit
|
|
||||||
run: bash misc/actions/execution-throttle.sh ${{ matrix.skip-rate }}
|
|
||||||
|
|
||||||
- uses: actions/setup-java@v1
|
- uses: actions/setup-java@v1
|
||||||
if: steps.throttle.conclusion == 'success'
|
|
||||||
with:
|
with:
|
||||||
java-version: '8'
|
java-version: '8'
|
||||||
|
|
||||||
|
- id: throttle
|
||||||
|
name: Execution throttle early exit
|
||||||
|
# just running, not using result for anything yet
|
||||||
|
run: bash misc/actions/execution-throttle.sh ${{ matrix.skip-rate }}
|
||||||
|
|
||||||
- name: Install multilib, mingw, sshpass and mtools
|
- name: Install multilib, mingw, sshpass and mtools
|
||||||
if: steps.throttle.conclusion == 'success'
|
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install gcc-multilib g++-multilib g++-mingw-w64 gcc-mingw-w64 sshpass mtools
|
sudo apt-get install gcc-multilib g++-multilib g++-mingw-w64 gcc-mingw-w64 sshpass mtools
|
||||||
|
|
Loading…
Reference in New Issue