Github CI: AddUbuntu 20.04 and MacOS 11.0 (#2936)
The job no longer uses `.latest` environment specifiers.
This commit is contained in:
parent
d340e8770c
commit
daf1efcd28
|
@ -9,29 +9,37 @@ jobs:
|
|||
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
fail-fast: false # not worthwhile...
|
||||
os: [ubuntu-18.04, ubuntu-20.04, macos-10.15, macos-11.0]
|
||||
fail-fast: false # Prefer quick result
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install missing software on ubuntu
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
- name: Install missing software on ubuntu 18.04
|
||||
if: matrix.os == 'ubuntu-18.04'
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install libxml2-utils
|
||||
sudo apt-get install z3 libz3-dev
|
||||
cp externals/z3_version_old.h externals/z3_version.h
|
||||
|
||||
- name: Install missing software on ubuntu 20.04
|
||||
if: matrix.os == 'ubuntu-20.04'
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install libxml2-utils
|
||||
sudo apt-get install z3 libz3-dev
|
||||
|
||||
- name: Install missing software on macos
|
||||
if: matrix.os == 'macos-latest'
|
||||
if: contains(matrix.os, 'macos')
|
||||
run: |
|
||||
brew install coreutils z3
|
||||
cp externals/z3_version_old.h externals/z3_version.h
|
||||
|
||||
- name: Install Qt
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
if: contains(matrix.os, 'ubuntu')
|
||||
uses: jurplel/install-qt-action@v2
|
||||
with:
|
||||
modules: 'qtcharts'
|
||||
|
@ -53,7 +61,6 @@ jobs:
|
|||
- name: Build cppcheck
|
||||
run: |
|
||||
make clean
|
||||
cp externals/z3_version_old.h externals/z3_version.h
|
||||
make -j$(nproc) USE_Z3=yes HAVE_RULES=yes
|
||||
|
||||
- name: Build test
|
||||
|
@ -74,14 +81,14 @@ jobs:
|
|||
./cppcheck --addon=threadsafety --std=c++03 addons/test/threadsafety
|
||||
|
||||
- name: Build GUI on ubuntu
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
if: contains(matrix.os, 'ubuntu')
|
||||
run: |
|
||||
pushd gui
|
||||
qmake HAVE_QCHART=yes
|
||||
make -j$(nproc)
|
||||
|
||||
- name: Run GUI tests on ubuntu
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
if: contains(matrix.os, 'ubuntu')
|
||||
run: |
|
||||
pushd gui/test/projectfile
|
||||
qmake
|
||||
|
@ -89,14 +96,14 @@ jobs:
|
|||
./test-projectfile
|
||||
|
||||
- name: Generate Qt help file on ubuntu
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
if: contains(matrix.os, 'ubuntu')
|
||||
run: |
|
||||
pushd gui/help
|
||||
qhelpgenerator online-help.qhcp -o online-help.qhc
|
||||
|
||||
# Run self check after "Build GUI" to include generated headers in analysis
|
||||
- name: Self check
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
if: matrix.os == 'ubuntu-18.04'
|
||||
run: |
|
||||
# compile with verification and ast matchers
|
||||
make clean
|
||||
|
@ -111,13 +118,14 @@ jobs:
|
|||
./cppcheck -q -j$(nproc) --template=gcc -D__CPPCHECK__ --error-exitcode=1 --inline-suppr --suppressions-list=.travis_suppressions --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml2/ -Icli -Igui --inconclusive --enable=style,performance,portability,warning,internal --exception-handling test/*.cpp tools
|
||||
|
||||
- name: Build triage on ubuntu
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
if: matrix.os == 'ubuntu-18.04'
|
||||
run: |
|
||||
pushd tools/triage
|
||||
qmake
|
||||
make -j$(nproc)
|
||||
|
||||
- name: Build Fuzzer
|
||||
if: matrix.os == 'ubuntu-18.04'
|
||||
run: |
|
||||
g++ -fsyntax-only -std=c++11 -Ilib oss-fuzz/*.cpp
|
||||
|
||||
|
|
Loading…
Reference in New Issue