Skip to content

Commit 8430b01

Browse files
authored
Update supported platforms and Build Environments (#956)
1 parent 73e98f1 commit 8430b01

File tree

2 files changed

+42
-4
lines changed

2 files changed

+42
-4
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: C/C++ CI on Ubuntu 18:04
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
- dev
9+
- dev/*
10+
- release/*
11+
- buildme/*
12+
13+
pull_request:
14+
branches:
15+
- master
16+
- main
17+
- dev
18+
19+
schedule:
20+
- cron: 0 2 * * 1-5
21+
22+
jobs:
23+
build:
24+
25+
runs-on: ${{ matrix.os }}
26+
strategy:
27+
matrix:
28+
config: [release, debug]
29+
os: [ubuntu-18.04]
30+
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v1
34+
continue-on-error: true
35+
- name: Test ${{ matrix.os }} ${{ matrix.config }}
36+
run: ./build-tests.sh ${{ matrix.config }}

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ Other resources to learn how to setup the build system:
4646
| Mac OS X 10.12.6 | Clang Xcode 9.0, 9.1 |
4747
| Mac OS X 10.13.3 | Clang Xcode 9.2, 9.3, 10.0, 10.1 |
4848
| Raspbian GNU/Linux 8 (jessie) | GCC 4.9.2 (armv7l) |
49-
| Ubuntu 14.04.x LTS | GCC 4.8.x, 4.9.4 |
50-
| Ubuntu 14.04.1 LTS | GCC 5.x.x |
51-
| Ubuntu 16.04 LTS | GCC 5.x.x (armv7l) |
49+
| Ubuntu 14.04.x LTS | GCC 5.x.x |
50+
| Ubuntu 16.04 LTS | GCC 5.x.x, GCC 5.x.x (armv7l) |
51+
| Ubuntu 18.04 LTS | GCC 7.5.x |
5252
| Windows 10 | Android Studio/Gradle |
5353
| Windows Server 2016 | Visual Studio 2017 (vc141) |
5454
| Windows Server 2019 | Visual Studio 2019 (vc142) |
@@ -63,7 +63,9 @@ Other resources to learn how to setup the build system:
6363
| Linux (x86, x64, arm, aarch64) | :white_check_mark: | |
6464
| Mac OS X 10.11+ | :white_check_mark: | |
6565
| Mac OS X (latest) | :white_check_mark: | :white_check_mark: |
66-
| Ubuntu 14.04.x LTS | :white_check_mark: | :white_check_mark: |
66+
| Ubuntu 14.04.x LTS | :white_check_mark: | |
67+
| Ubuntu 16.04.x LTS | :white_check_mark: | |
68+
| Ubuntu 18.04.x LTS | :white_check_mark: | :white_check_mark: |
6769
| Ubuntu (latest) | :white_check_mark: | :white_check_mark: |
6870
| Windows 7.1 | :white_check_mark: | |
6971
| Windows 8.1 | :white_check_mark: | |

0 commit comments

Comments
 (0)