Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jarro2783/cxxopts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarryd Beck <jarro.2783@gmail.com>2021-10-09 04:38:55 +0300
committerJarryd Beck <jarro.2783@gmail.com>2021-10-09 04:43:11 +0300
commitc9c111ab75fb1197f22e5af1a04da3f49b81b5e2 (patch)
tree0af1ba412fc1a42a7a893e580b54868ec6f5fa03
parent4fcadd83a7a0cb46ceb3d07e5ffed95013d85446 (diff)
Add the two available OSmore_compilers
-rw-r--r--.github/workflows/cmake.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index e282e38..2bb3c8f 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -5,6 +5,7 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
+ workflow_dispatch:
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
@@ -16,7 +17,11 @@ jobs:
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
- runs-on: ubuntu-latest
+ runs-on: ${{matrix.os}}
+
+ strategy:
+ matrix:
+ os: [ubuntu-18.04, ubuntu-20.04]
steps:
- uses: actions/checkout@v2