diff options
| author | Nathan Moinvaziri <nathan@solidstatenetworks.com> | 2019-10-22 17:21:10 -0700 |
|---|---|---|
| committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2019-10-24 09:15:38 +0200 |
| commit | 06c6d1d4061a06486d17fd4ff347c6fe4879142e (patch) | |
| tree | 2fca4279f9a950a3cf884a3acfadeb09541b459b /.github | |
| parent | 2d189648d545fbada821e8d0cf0680f4b9064171 (diff) | |
| download | Project-Tick-06c6d1d4061a06486d17fd4ff347c6fe4879142e.tar.gz Project-Tick-06c6d1d4061a06486d17fd4ff347c6fe4879142e.zip | |
Fixed build when apt-get out of date in GitHub Actions images.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/cmake.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 5c14979161..7201498052 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -257,12 +257,14 @@ jobs: - name: Install packages (Ubuntu) if: runner.os == 'Linux' run: | + sudo apt-get update sudo apt-get install -y ninja-build ${{ matrix.packages }} sudo pip install codecov - name: Install Clang code coverage tools (Ubuntu) if: runner.os == 'Linux' && matrix.codecov && matrix.compiler == 'clang' run: | + sudo apt-get update sudo apt-get install -y gcc-7 clang-7 clang-tools-7 llvm lcov - name: Install packages (Windows) @@ -319,4 +321,4 @@ jobs: codecov -f $gcovfiles -F "${{ matrix.codecov }}" --name "${{ matrix.name }}" env: # Codecov does not yet support GitHub Actions - CODECOV_TOKEN: "${{secrets.CODECOV_TOKEN}}" + CODECOV_TOKEN: "${{secrets.CODECOV_TOKEN}}"
\ No newline at end of file |
