tests cleanup

This commit is contained in:
BlackMATov
2023-01-13 14:13:54 +07:00
parent c32d599fcd
commit bff179fac5
23 changed files with 91 additions and 103 deletions

View File

@@ -16,7 +16,9 @@ jobs:
name: "xcode-${{matrix.config.xcode}}"
steps:
- name: Setup
run: brew install cmake ninja
run: |
brew update
brew install cmake ninja
- name: Checkout
uses: actions/checkout@v3
with:

View File

@@ -17,7 +17,9 @@ jobs:
name: "${{matrix.config.cxx}}"
steps:
- name: Setup
run: sudo apt-get -y install cmake ninja-build ${{matrix.config.cc}} ${{matrix.config.cxx}}
run: |
sudo apt-get update -o Acquire::Retries=10
sudo apt-get install -o Acquire::Retries=10 -y cmake ninja-build ${{matrix.config.cc}} ${{matrix.config.cxx}}
- name: Checkout
uses: actions/checkout@v3
with: