From 44a6d1f0fa70f16b91641318242e3f44e0897a0b Mon Sep 17 00:00:00 2001 From: Wolfgang Hommel Date: Fri, 12 Feb 2021 17:04:28 +0100 Subject: [PATCH] Set FORCE_MONOTONIC_FIX for GitHub CI --- .github/workflows/make-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/make-test.yml b/.github/workflows/make-test.yml index a464d2b..751e58e 100644 --- a/.github/workflows/make-test.yml +++ b/.github/workflows/make-test.yml @@ -2,22 +2,22 @@ name: Run make test on: push: - branches: + branches: - master - develop schedule: - cron: '30 9 * * *' - + jobs: build: strategy: matrix: os: [ubuntu-latest, macOS-latest] runs-on: ${{ matrix.os }} - + steps: - uses: actions/checkout@v1 - name: make - run: make + run: FAKETIME_COMPILE_CFLAGS="-DFORCE_MONOTONIC_FIX" make - name: make test run: make test