From 374a9e31db076a6443b2da58af6e28e28d7eeb38 Mon Sep 17 00:00:00 2001 From: Jonathan Moallem Date: Sun, 22 Nov 2020 02:38:10 +1100 Subject: [PATCH] Removed unused configure step from CI --- .github/workflows/platform-build.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/platform-build.yml b/.github/workflows/platform-build.yml index 69511cc..f877052 100644 --- a/.github/workflows/platform-build.yml +++ b/.github/workflows/platform-build.yml @@ -12,8 +12,6 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 - - name: configure - run: ./configure - name: make run: make - name: make check @@ -25,8 +23,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: configure - run: ./configure - name: make run: make - name: make check @@ -38,10 +34,8 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - name: configure - run: ./configure - name: make - run: make + run: mingw32-make - name: make check run: make check - name: make distcheck