2020-04-19 14:04:04 +02:00
|
|
|
name: C/C++ CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-06-28 11:02:48 +02:00
|
|
|
branches: [ master, release/v8.* ]
|
2020-04-19 14:04:04 +02:00
|
|
|
pull_request:
|
2021-06-28 11:02:48 +02:00
|
|
|
branches: [ master, release/v8.* ]
|
2020-04-19 14:04:04 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-02-15 14:47:24 -05:00
|
|
|
- uses: ammaraskar/gcc-problem-matcher@master
|
2020-04-19 14:04:04 +02:00
|
|
|
- name: Run tests
|
2021-07-05 13:58:46 -04:00
|
|
|
run: sudo apt-get install libpng-dev ruby-full; cd tests; python ./main.py report
|
|
|
|
- name: Upload coverage to Codecov
|
|
|
|
uses: codecov/codecov-action@v1
|
|
|
|
with:
|
|
|
|
fail_ci_if_error: true
|
|
|
|
verbose: true
|
|
|
|
|