Skip to content

add --time-ref= option #467

add --time-ref= option

add --time-ref= option #467

# This is a basic workflow to help you get started with Actions
name: gitHubActionFromTravis
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the $default-branch branch
push:
# branches: [ $default-branch ]
pull_request:
# branches: [ $default-branch ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: apt
run: sudo apt-get -qq update; sudo apt-get install -y libc-dbg python3-numpy python3-matplotlib texlive-latex-extra texlive-fonts-recommended dvipng cm-super
- name: Download valgrind
run: export VALGRIND_VERSION=VALGRIND_3_23_0; make -f travis.mk download-valgrind
- name: Patch valgrind
run: make -f travis.mk patch-valgrind || make -f travis.mk patch-error
- name: Configure patched valgrind
run: make -f travis.mk configure
- name: Build patched valgrind
run: make -f travis.mk build
- name: Check Valgrind
run: make -f travis.mk check-install ; make -f travis.mk check || make -f travis.mk check-error
- name: Check Verrou Unit-test
run: make -f travis.mk unit-test
- name: Check Verrou post-regtest-checks
run: make -f travis.mk post-regtest-checks
- name: Check Verrou gitignore
run: make -f travis.mk gitignore-checks