From ba5b77d6b5c13b3fbddb5a7a43410514ab482929 Mon Sep 17 00:00:00 2001 From: umer2001 Date: Tue, 6 Oct 2020 20:45:12 +0500 Subject: [PATCH] =?utf8?q?=F0=9F=90=9B=20Fix=20Windows=20CI=20`CC`=20env?= =?utf8?q?=20in=20testing=20step?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .github/workflows/windows.yml | 39 ++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 40d7c4e8..eaf4313a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -2,13 +2,13 @@ name: Windows on: push: - branches: - - '**' - - '!gh-pages' + branches: + - "**" + - "!gh-pages" pull_request: branches: - - '**' - - '!gh-pages' + - "**" + - "!gh-pages" jobs: build: @@ -20,20 +20,21 @@ jobs: double: [0, 1] steps: - - name: Checkout - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - - name: Init submodules - run: git submodule update --init util ast + - name: Init submodules + run: git submodule update --init util ast - - name: Build - run: make - env: - CC: gcc - USE_DOUBLE: ${{ matrix.double }} - BUILD_ON_WINDOWS: 1 + - name: Build + run: make + env: + CC: gcc + USE_DOUBLE: ${{ matrix.double }} + BUILD_ON_WINDOWS: 1 - - name: Test - run: make test - env: - BUILD_ON_WINDOWS: 1 + - name: Test + run: make test + env: + CC: gcc + BUILD_ON_WINDOWS: 1 -- 2.43.0