aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: ebcd846b7697563f344a4866b5f81de341d308c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: Build TCPDBench

on:
  push:
  pull_request:
  schedule:
    - cron: 42 8 * * */21

jobs:
  tcpdbench-docker:
    name: Check TCPDBench (docker)
    runs-on: ubuntu-latest
    container:
      volumes:
        - ./analysis/output:/TCPDBench/analysis/output

    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: TCPDBench docker check
        uses: ./.github/workflows/
        with:
          entrypoint: "make clean && make results && git checkout ./analysis/output/rankplots/*.pdf && git diff --exit-code"