Skip to content

Commit

Permalink
[github-actions] add gcc-10 and clang-10 build tests (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
wgtdkp authored Apr 12, 2021
1 parent 27c35fb commit 89af74f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on: [push, pull_request]
jobs:

cancel-previous-runs:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
Expand All @@ -55,10 +55,10 @@ jobs:
gcc-build:
name: gcc-${{ matrix.gcc_ver }}
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
gcc_ver: [5, 6, 7, 8, 9]
gcc_ver: [5, 6, 7, 8, 9, 10]
steps:
- uses: actions/checkout@v2
- name: Install CMake 3.10.1
Expand Down Expand Up @@ -92,10 +92,10 @@ jobs:
clang-build:
name: clang-${{ matrix.clang_ver }}-${{ matrix.build_type }}
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
clang_ver: [5, 6, 7, 8, 9]
clang_ver: [5, 6, 7, 8, 9, 10, 11]
build_type: ["Debug", "Release"]
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
./tests/commissioner-test
android-ndk:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Bootstrap
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
ninja
fmt-format-check:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Bootstrap
Expand Down

0 comments on commit 89af74f

Please sign in to comment.