aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-06-15 20:53:06 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-06-15 20:53:06 +0300
commit98dbe60853680580737bd547f87f4157ad3d0dae (patch)
tree51958dc4d4b7f5d668b287f05dee8862f6501a44 /.github/workflows/ci.yml
parentworkflows/ci: in terms of toolsets, not runner images (diff)
downloadmath-server-98dbe60853680580737bd547f87f4157ad3d0dae.tar.gz
math-server-98dbe60853680580737bd547f87f4157ad3d0dae.zip
workflows/ci: use ubuntu-latest
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml6
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: