File: test-times.yml

package info (click to toggle)
quantlib 1.41-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,480 kB
  • sloc: cpp: 400,885; makefile: 6,547; python: 214; sh: 150; lisp: 86
file content (46 lines) | stat: -rw-r--r-- 1,409 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Check test times
on:
  push:
    branches:
      - '**'
  pull_request:
jobs:
  check-test-times:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v6
    - name: Cache
      uses: hendrikmuhs/ccache-action@v1.2
      with:
        key: linux-ci-test-times-${{ github.ref }}
        restore-keys: |
          linux-ci-test-times-${{ github.ref }}
          linux-ci-test-times-refs/heads/master
          linux-ci-test-times-
    - name: Setup
      run: |
        sudo rm /etc/apt/sources.list.d/microsoft-prod.list
        sudo apt update
        sudo apt install -y libboost-dev autoconf automake libtool ccache
    - name: Build
      run: |
        ./autogen.sh
        ./configure --disable-static CC="ccache gcc" CXX="ccache g++" CXXFLAGS="-O2 -g0"
        make -j 4
    - name: Run faster tests
      run: |
        ./test-suite/quantlib-test-suite --logger=JUNIT,warning,faster.xml:HRF,message -- --faster
    - name: Run fast tests
      run: |
        ./test-suite/quantlib-test-suite --logger=JUNIT,warning,fast.xml:HRF,message -- --fast
    - name: Run all tests
      run: |
        ./test-suite/quantlib-test-suite --logger=JUNIT,warning,all.xml:HRF,message
    - name: Save test times
      uses: actions/upload-artifact@v6
      with:
        name: test-reports
        path: ./*.xml
    - name: Check test times
      run: |
        python ./tools/check_test_times.py