diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:53:06 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:53:06 +0300 |
commit | 98dbe60853680580737bd547f87f4157ad3d0dae (patch) | |
tree | 51958dc4d4b7f5d668b287f05dee8862f6501a44 | |
parent | workflows/ci: in terms of toolsets, not runner images (diff) | |
download | math-server-98dbe60853680580737bd547f87f4157ad3d0dae.tar.gz math-server-98dbe60853680580737bd547f87f4157ad3d0dae.zip |
workflows/ci: use ubuntu-latest
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43b3229..d0ac751 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: jobs: lint: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest name: Linting if: github.ref == 'refs/heads/master' steps: @@ -28,7 +28,7 @@ jobs: platform: [x64, x86] configuration: [Debug, Release] include: - - {toolset: gcc, os: ubuntu-20.04} + - {toolset: gcc, os: ubuntu-latest} - {toolset: vs2017, os: windows-2016} - {toolset: vs2019, os: windows-2019} exclude: @@ -75,7 +75,7 @@ jobs: strategy: matrix: project: [client, server] - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest name: 'Docker: publish math-${{ matrix.project }}' if: github.ref == 'refs/heads/master' steps: |