diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-13 18:28:06 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-13 18:49:14 +0300 |
commit | 232e948c8e15ecee69fcb75d5d4c854434e00446 (patch) | |
tree | 045502e27f794ba616a4708e6512e3bb2459a96a /.github/workflows/ci.yml | |
parent | Makefile: slim down (diff) | |
download | math-server-232e948c8e15ecee69fcb75d5d4c854434e00446.tar.gz math-server-232e948c8e15ecee69fcb75d5d4c854434e00446.zip |
workflows/ci: Bionic to Focal
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d71f3c7..bc12dcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: jobs: lint: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 name: Linting if: github.ref == 'refs/heads/master' steps: @@ -19,21 +19,21 @@ jobs: with: submodules: recursive - name: Run clang-format - run: ./cmake/tools/clang-format.py --clang-format clang-format-9 + run: ./cmake/tools/clang-format.py --clang-format clang-format-10 build: strategy: matrix: - os: [ubuntu-18.04, windows-2016, windows-2019] + os: [ubuntu-20.04, windows-2016, windows-2019] platform: [x64, x86] configuration: [Debug, Release] include: - {os: windows-2016, toolset: msvc} - {os: windows-2019, toolset: msvc} - - {os: ubuntu-18.04, toolset: gcc} + - {os: ubuntu-20.04, toolset: gcc} exclude: # 32-bit Linux builds, meh. - - {os: ubuntu-18.04, platform: x86} + - {os: ubuntu-20.04, platform: x86} runs-on: '${{ matrix.os }}' name: 'Build: ${{ matrix.os }} / ${{ matrix.toolset }} / ${{ matrix.platform }} / ${{ matrix.configuration }}' env: @@ -74,7 +74,7 @@ jobs: strategy: matrix: project: [client, server] - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 name: 'Docker: publish math-${{ matrix.project }}' if: github.ref == 'refs/heads/master' steps: |