We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f49a12 commit 9847f66Copy full SHA for 9847f66
.github/workflows/ccpp.yml
@@ -7,8 +7,11 @@ on:
7
branches: [ master ]
8
9
jobs:
10
- build-xenial:
11
- runs-on: ubuntu-16.04
+ build-ubuntu:
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ os: [ubuntu-18.04, ubuntu-20.04]
15
steps:
16
- uses: actions/checkout@v2
17
- name: install-deps
@@ -20,18 +23,3 @@ jobs:
20
23
cmake --build build
21
24
- name: install
22
25
run: sudo cmake --install ${{ github.workspace }}/build
-
- build-latest:
- runs-on: ubuntu-latest
26
- steps:
27
- - uses: actions/checkout@v2
28
- - name: install-deps
29
- run: sudo apt install libyaml-cpp-dev libatasmart-dev cmake
30
- - name: build
31
- run: |
32
- mkdir build
33
- cmake -B build
34
- cmake --build build
35
- - name: install
36
- run: sudo cmake --install ${{ github.workspace }}/build
37
0 commit comments