From c36674c27f5ddd4be208a4e72e58e16ad5fc4774 Mon Sep 17 00:00:00 2001 From: Wolfgang Hommel Date: Sun, 10 May 2020 13:28:30 +0200 Subject: [PATCH] remote automake branch workflow until work on it continues --- .github/workflows/make-autotest.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/make-autotest.yml diff --git a/.github/workflows/make-autotest.yml b/.github/workflows/make-autotest.yml deleted file mode 100644 index 03ba9a7..0000000 --- a/.github/workflows/make-autotest.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Run make test for automake branch - -on: - push: - branches: - - automake - schedule: - - cron: '30 9 * * *' - -jobs: - build: - strategy: - matrix: - os: [ubuntu-latest, macOS-latest] - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v2 - with: - ref: automake - - name: init - run: sh ./build.sh init - - name: configure - run: ./configure - - name: make - run: make - - name: make test - run: cd test ; make test