mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Run unit tests with gcc 7 too (#2706)
This commit is contained in:
parent
a12824d425
commit
1ce7b9cbc5
20
.github/workflows/build_cpp.yml
vendored
20
.github/workflows/build_cpp.yml
vendored
@ -56,6 +56,26 @@ jobs:
|
||||
- name: Build examples, etc
|
||||
run: cmake --build ${{ env.build_dir }} --config ${{ env.config }} --parallel 2
|
||||
|
||||
ubuntu-18_04-gcc-7:
|
||||
runs-on: 'ubuntu-18.04'
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install libwebp-dev
|
||||
- name: Install gcc 7
|
||||
run: |
|
||||
sudo apt install gcc-7 g++-7
|
||||
- name: Configure
|
||||
run: cmake ${{ github.workspace }}/dlib/test -B ${{ env.build_dir }}
|
||||
- name: Build just tests
|
||||
run: cmake --build ${{ env.build_dir }} --config ${{ env.config }} --target dtest --parallel 4
|
||||
- name: Test
|
||||
run: ${{ env.build_dir }}/dtest --runall -q
|
||||
- name: Build examples, etc
|
||||
run: cmake --build ${{ env.build_dir }} --config ${{ env.config }} --parallel 2
|
||||
|
||||
ubuntu-latest-clang-default:
|
||||
runs-on: 'ubuntu-latest'
|
||||
steps:
|
||||
|
Loading…
Reference in New Issue
Block a user